mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 02:08:10 +00:00
52 lines
1.8 KiB
XML
52 lines
1.8 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
tools:parentTag="android.widget.LinearLayout"
|
||
|
|
android:gravity="center_vertical"
|
||
|
|
android:paddingTop="8dp"
|
||
|
|
android:paddingBottom="8dp">
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/statTypeTitle"
|
||
|
|
android:layout_width="35dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
tools:text="STR"
|
||
|
|
tools:textColor="@color/red_50"
|
||
|
|
android:layout_marginRight="4dp"
|
||
|
|
style="@style/Body3"
|
||
|
|
android:textSize="16sp"
|
||
|
|
android:textAllCaps="true" />
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/previousValueTextView"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:minWidth="28dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
tools:text="10"
|
||
|
|
android:textColor="@color/gray_100"
|
||
|
|
style="@style/Body3"
|
||
|
|
android:textSize="16sp"
|
||
|
|
android:gravity="right"/>
|
||
|
|
|
||
|
|
<SeekBar
|
||
|
|
android:id="@+id/statsSeekBar"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"/>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="+"
|
||
|
|
android:textColor="@color/gray_100"
|
||
|
|
android:textSize="16sp"/>
|
||
|
|
<EditText
|
||
|
|
android:id="@+id/valueEditText"
|
||
|
|
android:layout_width="30dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
tools:text="0"
|
||
|
|
android:gravity="center_horizontal"
|
||
|
|
android:textColor="@color/gray_100"
|
||
|
|
style="@style/Body3"
|
||
|
|
android:textSize="16sp"
|
||
|
|
android:inputType="number"/>
|
||
|
|
</merge>
|