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">
|
2022-05-17 13:16:19 +00:00
|
|
|
<com.habitrpg.common.habitica.views.PixelArtView
|
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:gravity="center"
|
|
|
|
|
tools:text="1"
|
2021-07-20 07:28:50 +00:00
|
|
|
style="@style/CountLabel"
|
2019-05-27 11:21:25 +00:00
|
|
|
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"
|
2022-08-02 15:02:07 +00:00
|
|
|
style="@style/Caption4"
|
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>
|