mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-27 08:40:00 +00:00
36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
<View
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="1dp"
|
||
|
|
android:background="@color/days_gray"/>
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/title_view"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:paddingLeft="@dimen/spacing_large"
|
||
|
|
android:paddingRight="@dimen/spacing_large">
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/titleTextView"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_marginTop="@dimen/spacing_large"
|
||
|
|
android:layout_marginBottom="@dimen/spacing_large"
|
||
|
|
android:textSize="16sp"
|
||
|
|
android:textColor="@color/gray_50"
|
||
|
|
tools:text="Example"/>
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/caretView"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:scaleType="center"
|
||
|
|
android:layout_gravity="center_vertical"
|
||
|
|
android:layout_marginRight="16dp" />
|
||
|
|
</LinearLayout>
|
||
|
|
</merge>
|