2019-05-27 11:21:25 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<RelativeLayout 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-09-04 16:17:34 +00:00
|
|
|
tools:background="?attr/colorContentBackground">
|
2019-05-27 11:21:25 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/achievement_container"
|
|
|
|
|
android:layout_width="156dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@drawable/layout_rounded_bg_window"
|
2019-05-27 11:21:25 +00:00
|
|
|
android:clipChildren="true"
|
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:layout_margin="4dp">
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="66dp">
|
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_gravity="center"/>
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/achievement_title"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:minHeight="40dp"
|
|
|
|
|
style="@style/Body1"
|
|
|
|
|
android:gravity="center"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_secondary"
|
|
|
|
|
android:background="@color/offset_background"
|
2021-06-24 12:18:33 +00:00
|
|
|
android:breakStrategy="high_quality"
|
2019-05-27 11:21:25 +00:00
|
|
|
android:paddingStart="@dimen/spacing_medium"
|
|
|
|
|
android:paddingEnd="@dimen/spacing_medium"
|
|
|
|
|
android:paddingTop="@dimen/spacing_small"
|
|
|
|
|
android:paddingBottom="@dimen/spacing_small"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/achievement_count_label"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="24dp"
|
|
|
|
|
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_alignStart="@id/achievement_container"
|
|
|
|
|
android:layout_marginStart="-4dp"/>
|
|
|
|
|
</RelativeLayout>
|