2016-09-06 19:33:17 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-09-08 15:22:59 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-11-12 15:48:42 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-10-27 14:53:22 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-10-27 14:53:22 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
|
android:orientation="vertical">
|
2016-09-08 17:19:32 +00:00
|
|
|
<FrameLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_horizontal">
|
2022-05-12 11:32:36 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.PixelArtView
|
2016-09-08 17:19:32 +00:00
|
|
|
android:id="@+id/achievement_drawee"
|
2020-10-27 14:53:22 +00:00
|
|
|
android:layout_width="64dp"
|
|
|
|
|
android:layout_height="56dp"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:layout_marginEnd="3dp" />
|
2016-09-08 17:19:32 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/achievement_count_label"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-15 07:28:34 +00:00
|
|
|
android:layout_gravity="bottom|end"
|
2017-02-01 15:58:53 +00:00
|
|
|
tools:text="2"
|
2021-07-20 07:28:50 +00:00
|
|
|
style="@style/CountLabel"/>
|
2016-09-08 17:19:32 +00:00
|
|
|
</FrameLayout>
|
2016-09-06 19:33:17 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/achievement_text"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2016-09-08 15:22:59 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
2016-09-08 17:19:32 +00:00
|
|
|
android:layout_marginTop="2dp"
|
2016-09-08 15:22:59 +00:00
|
|
|
android:gravity="center" />
|
|
|
|
|
</LinearLayout>
|