mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-28 09:56:15 +00:00
28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout 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">
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/achievement_count_label"
|
||
|
|
android:layout_width="40dp"
|
||
|
|
android:layout_height="40dp"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textColor="@color/text_ternary"
|
||
|
|
style="@style/Body1"
|
||
|
|
android:background="@drawable/circle_offset"
|
||
|
|
tools:text="12"
|
||
|
|
android:layout_marginStart="35dp"
|
||
|
|
android:layout_marginEnd="25dp"/>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/achievement_title"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
style="@style/Body1"
|
||
|
|
android:textColor="@color/text_secondary"
|
||
|
|
tools:text="This is the quest title"/>
|
||
|
|
</LinearLayout>
|