habitica-android/Habitica/res/layout/profile_achievement_item.xml

38 lines
1.5 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<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"
xmlns:tools="http://schemas.android.com/tools"
2019-08-24 10:33:14 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:orientation="vertical">
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal">
2021-06-07 14:09:57 +00:00
<ImageView
android:id="@+id/achievement_drawee"
android:layout_width="64dp"
android:layout_height="56dp"
2020-09-15 07:28:34 +00:00
android:layout_marginEnd="3dp" />
<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"
2020-11-12 15:48:42 +00:00
android:background="@drawable/achievement_badge_bg"
2020-09-17 11:47:02 +00:00
android:paddingStart="2dp"
android:paddingEnd="2dp"
2017-02-01 15:58:53 +00:00
android:textSize="12sp"
2020-09-15 07:28:34 +00:00
android:textColor="@color/white" />
</FrameLayout>
<TextView
android:id="@+id/achievement_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="2dp"
android:gravity="center" />
</LinearLayout>