mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-27 00:30:00 +00:00
35 lines
1.4 KiB
XML
35 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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"
|
|
android:focusable="true"
|
|
android:clickable="true">
|
|
<com.habitrpg.common.habitica.views.PixelArtView
|
|
android:id="@+id/imageView"
|
|
android:layout_width="@dimen/gear_image_size"
|
|
android:layout_height="@dimen/gear_image_size"
|
|
android:layout_marginEnd="@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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
tools:text="Title"
|
|
android:textColor="@color/text_primary"
|
|
style="@style/RowTitle"/>
|
|
<TextView
|
|
android:id="@+id/ownedTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
tools:text="Value"
|
|
android:textColor="@color/text_secondary"
|
|
style="@style/RowText" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|