mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 10:18:12 +00:00
34 lines
1.1 KiB
XML
34 lines
1.1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:padding="24dip">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/achievement_image"
|
||
|
|
android:layout_width="30dp"
|
||
|
|
android:layout_height="33dp"
|
||
|
|
android:layout_gravity="center_horizontal" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/achievement_title"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:paddingLeft="15dip"
|
||
|
|
android:text="example title" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/achievement_text"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="example text"
|
||
|
|
android:paddingTop="15dip" />
|
||
|
|
</LinearLayout>
|