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"
|
2020-06-15 16:05:32 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-05-27 11:21:25 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-06-16 09:46:44 +00:00
|
|
|
android:gravity="center_vertical">
|
2019-05-27 11:21:25 +00:00
|
|
|
<RelativeLayout
|
|
|
|
|
android:layout_width="100dp"
|
|
|
|
|
android:layout_height="86dp">
|
2021-06-07 14:09:57 +00:00
|
|
|
<ImageView
|
2019-05-27 11:21:25 +00:00
|
|
|
android:id="@+id/achievement_icon"
|
2020-08-25 16:49:26 +00:00
|
|
|
android:layout_width="64dp"
|
2020-06-15 16:05:32 +00:00
|
|
|
android:layout_height="56dp"
|
2019-05-27 11:21:25 +00:00
|
|
|
android:layout_centerInParent="true"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/achievement_count_label"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="24dp"
|
|
|
|
|
android:minWidth="24dp"
|
|
|
|
|
android:background="@drawable/achievement_badge_bg"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
tools:text="1"
|
|
|
|
|
android:paddingStart="2dp"
|
|
|
|
|
android:paddingEnd="2dp"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
|
android:layout_marginStart="13dp"
|
|
|
|
|
android:layout_marginTop="0dp"/>
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
<LinearLayout
|
2019-06-21 07:08:30 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-05-27 11:21:25 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-06-21 07:08:30 +00:00
|
|
|
android:orientation="vertical"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:layout_marginEnd="@dimen/spacing_large">
|
2019-05-27 11:21:25 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/achievement_title"
|
2019-06-21 07:08:30 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-05-27 11:21:25 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/Body1"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_primary"/>
|
2019-05-27 11:21:25 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/achievement_description"
|
2019-06-21 07:08:30 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-05-27 11:21:25 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/Caption3"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_secondary"/>
|
2019-08-24 10:33:14 +00:00
|
|
|
</LinearLayout>
|
2019-05-27 11:21:25 +00:00
|
|
|
</LinearLayout>
|