mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-28 01:54:52 +00:00
30 lines
1 KiB
XML
30 lines
1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:orientation="horizontal" android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:padding="@dimen/row_padding"
|
||
|
|
android:background="@drawable/selection_highlight">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:layout_width="@dimen/gear_image_size"
|
||
|
|
android:layout_height="@dimen/gear_image_size"
|
||
|
|
android:id="@+id/gear_image" />
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:id="@+id/gear_text"
|
||
|
|
android:textStyle="bold" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:id="@+id/gear_notes" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|