2016-01-12 16:08:02 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-11-02 10:52:59 +00:00
|
|
|
<merge
|
2017-10-26 16:44:03 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
style="@style/RowWrapper"
|
|
|
|
|
android:clickable="true"
|
2017-11-02 10:52:59 +00:00
|
|
|
android:focusable="true"
|
|
|
|
|
tools:parentTag="android.widget.LinearLayout">
|
2021-06-07 14:09:57 +00:00
|
|
|
<ImageView
|
2017-10-26 16:44:03 +00:00
|
|
|
android:id="@+id/imageView"
|
|
|
|
|
android:layout_width="@dimen/gear_image_size"
|
|
|
|
|
android:layout_height="@dimen/gear_image_size"
|
2020-04-03 14:58:09 +00:00
|
|
|
android:layout_marginEnd="@dimen/row_padding"/>
|
2017-10-26 16:44:03 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_gravity="center_vertical">
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/titleTextView"
|
2016-01-12 16:08:02 +00:00
|
|
|
android:layout_width="match_parent"
|
2016-01-13 16:25:08 +00:00
|
|
|
android:layout_height="wrap_content"
|
2017-10-26 16:44:03 +00:00
|
|
|
tools:text="Title"
|
|
|
|
|
style="@style/RowTitle"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/valueTextView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:text="Value"
|
|
|
|
|
style="@style/RowText"/>
|
|
|
|
|
</LinearLayout>
|
2017-11-02 10:52:59 +00:00
|
|
|
</merge>
|