2019-05-27 11:21:25 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:paddingTop="13dp"
|
|
|
|
|
android:paddingBottom="13dp">
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/achievement_count_label"
|
|
|
|
|
android:layout_width="40dp"
|
|
|
|
|
android:layout_height="40dp"
|
|
|
|
|
android:gravity="center"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_ternary"
|
2019-05-27 11:21:25 +00:00
|
|
|
style="@style/Body1"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@drawable/circle_offset"
|
2019-05-27 11:21:25 +00:00
|
|
|
tools:text="12"
|
|
|
|
|
android:layout_marginStart="35dp"
|
|
|
|
|
android:layout_marginEnd="25dp"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/achievement_title"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/Body1"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_secondary"
|
2019-05-27 11:21:25 +00:00
|
|
|
tools:text="This is the quest title"/>
|
|
|
|
|
</LinearLayout>
|