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

47 lines
1.9 KiB
XML
Raw Normal View History

2016-03-19 10:22:52 +00:00
<?xml version="1.0" encoding="utf-8"?>
2016-03-28 16:43:15 +00:00
<layout xmlns:android="http://schemas.android.com/apk/res/android"
2016-03-19 10:22:52 +00:00
xmlns:bind="http://schemas.android.com/apk/res-auto"
2016-03-28 16:43:15 +00:00
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable name="title" type="String"/>
<variable name="value" type="String"/>
<variable name="imageNamed" type="String"/>
2016-03-31 13:57:57 +00:00
<variable
name="disabled"
type="Boolean" />
2016-03-28 16:43:15 +00:00
</data>
<LinearLayout
2016-03-19 10:22:52 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2016-03-28 16:43:15 +00:00
style="@style/RowWrapper"
2016-03-19 10:22:52 +00:00
android:clickable="true">
2016-11-19 11:29:45 +00:00
<com.facebook.drawee.view.SimpleDraweeView
2016-03-19 10:22:52 +00:00
android:layout_width="@dimen/gear_image_size"
android:layout_height="@dimen/gear_image_size"
2016-03-28 16:43:15 +00:00
bind:imageName='@{imageNamed == null ? "head_0" : imageNamed}'
android:contentDescription="@{imageNamed}"
2016-03-31 13:57:57 +00:00
android:alpha="@{imageNamed == null || disabled ? 0.3f : 1.0f}"
2016-03-19 10:22:52 +00:00
android:scaleType="fitEnd"
android:layout_marginRight="@dimen/row_padding"/>
2016-03-28 16:43:15 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_gravity="center_vertical">
2016-03-19 10:22:52 +00:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
2016-03-28 16:43:15 +00:00
android:text="@{title}"
2016-03-19 10:22:52 +00:00
tools:text="Title"
2016-03-31 13:57:57 +00:00
style="@style/RowTitle"
android:alpha="@{disabled ? 0.3f : 1.0f}" />
2016-03-28 16:43:15 +00:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:text="Value"
android:text="@{value}"
2016-03-31 13:57:57 +00:00
style="@style/RowText"
android:alpha="@{disabled ? 0.3f : 1.0f}" />
2016-03-28 16:43:15 +00:00
</LinearLayout>
</LinearLayout>
</layout>