2018-01-30 12:41:22 +00:00
|
|
|
<?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"
|
2018-02-14 19:49:19 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:parentTag="android.widget.LinearLayout">
|
2018-01-30 12:41:22 +00:00
|
|
|
<View
|
2018-01-31 17:48:12 +00:00
|
|
|
android:id="@+id/separator"
|
2018-01-30 12:41:22 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dp"
|
2019-04-29 15:42:29 +00:00
|
|
|
android:background="@color/gray_500"/>
|
2018-01-30 12:41:22 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/title_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-06-13 08:54:47 +00:00
|
|
|
android:paddingStart="@dimen/spacing_large"
|
2018-02-13 12:01:52 +00:00
|
|
|
android:gravity="center_vertical">
|
2018-01-30 12:41:22 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/titleTextView"
|
2018-02-13 12:01:52 +00:00
|
|
|
android:layout_width="wrap_content"
|
2018-01-30 12:41:22 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="@dimen/spacing_large"
|
|
|
|
|
android:layout_marginBottom="@dimen/spacing_large"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:textColor="@color/gray_50"
|
|
|
|
|
tools:text="Example"/>
|
2018-02-13 12:01:52 +00:00
|
|
|
<FrameLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_height="18dp"
|
|
|
|
|
android:layout_marginLeft="@dimen/spacing_medium"
|
|
|
|
|
android:layout_marginRight="@dimen/spacing_medium">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/infoIconView"
|
|
|
|
|
android:layout_width="18dp"
|
|
|
|
|
android:layout_height="18dp"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:layout_gravity="center_vertical|start"/>
|
2018-02-13 12:01:52 +00:00
|
|
|
</FrameLayout>
|
2018-01-30 12:41:22 +00:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/caretView"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:scaleType="center"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:paddingEnd="32dp" />
|
2018-01-30 12:41:22 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
</merge>
|