2016-03-19 10:22:52 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-05-15 10:49:57 +00:00
|
|
|
<LinearLayout xmlns:bind="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
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"
|
2023-12-21 13:17:06 +00:00
|
|
|
android:focusable="true"
|
2017-05-15 10:49:57 +00:00
|
|
|
android:clickable="true">
|
2022-05-17 13:16:19 +00:00
|
|
|
<com.habitrpg.common.habitica.views.PixelArtView
|
2017-10-07 16:55:13 +00:00
|
|
|
android:id="@+id/imageView"
|
2017-05-15 10:49:57 +00:00
|
|
|
android:layout_width="@dimen/gear_image_size"
|
|
|
|
|
android:layout_height="@dimen/gear_image_size"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginEnd="@dimen/row_padding"/>
|
2016-03-28 16:43:15 +00:00
|
|
|
<LinearLayout
|
2016-03-19 10:22:52 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-05-15 10:49:57 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_gravity="center_vertical">
|
|
|
|
|
<TextView
|
2017-10-07 16:55:13 +00:00
|
|
|
android:id="@+id/titleTextView"
|
2016-03-28 16:43:15 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-05-15 10:49:57 +00:00
|
|
|
tools:text="Title"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_primary"
|
2017-05-15 10:49:57 +00:00
|
|
|
style="@style/RowTitle"/>
|
|
|
|
|
<TextView
|
2017-10-07 16:55:13 +00:00
|
|
|
android:id="@+id/ownedTextView"
|
2017-05-15 10:49:57 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:text="Value"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_secondary"
|
2017-05-15 10:49:57 +00:00
|
|
|
style="@style/RowText" />
|
2016-03-28 16:43:15 +00:00
|
|
|
</LinearLayout>
|
2023-12-21 13:17:06 +00:00
|
|
|
</LinearLayout>
|