habitica-android/Habitica/res/layout/item_image_row.xml

36 lines
1.3 KiB
XML
Raw Normal View History

2016-01-12 16:08:02 +00:00
<?xml version="1.0" encoding="utf-8"?>
<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"
android:focusable="true"
tools:parentTag="android.widget.LinearLayout">
2017-10-26 16:44:03 +00:00
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/imageView"
android:layout_width="@dimen/gear_image_size"
android:layout_height="@dimen/gear_image_size"
actualImageScaleType="fitCenter"
android:layout_marginRight="@dimen/row_padding"/>
<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"
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>
</merge>