2020-11-10 16:57:38 +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">
|
2020-11-13 15:28:40 +00:00
|
|
|
<ImageView
|
2020-11-10 16:57:38 +00:00
|
|
|
android:id="@+id/achievement_count_label"
|
|
|
|
|
android:layout_width="40dp"
|
|
|
|
|
android:layout_height="40dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:textColor="@color/text_ternary"
|
|
|
|
|
style="@style/Body1"
|
2020-11-13 15:28:40 +00:00
|
|
|
android:src="@drawable/won_challenge_icon"
|
2020-11-10 16:57:38 +00:00
|
|
|
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"
|
|
|
|
|
android:textColor="@color/text_secondary"
|
|
|
|
|
tools:text="This is the quest title"/>
|
|
|
|
|
</LinearLayout>
|