2017-10-30 08:25:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-11-02 15:20:52 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-10-30 08:25:33 +00:00
|
|
|
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"
|
2017-11-02 12:31:44 +00:00
|
|
|
android:layout_height="match_parent"
|
2017-11-02 15:20:52 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:maxHeight="4dp"
|
|
|
|
|
android:minHeight="4dp"/>
|
2017-10-30 08:25:33 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="+"
|
|
|
|
|
android:textColor="@color/gray_100"
|
|
|
|
|
android:textSize="16sp"/>
|
2018-11-06 15:11:02 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatEditText
|
2017-10-30 08:25:33 +00:00
|
|
|
android:id="@+id/valueEditText"
|
2017-11-08 17:56:31 +00:00
|
|
|
android:layout_width="40dp"
|
2017-10-30 08:25:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:text="0"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:textColor="@color/gray_100"
|
2017-11-02 15:20:52 +00:00
|
|
|
style="@style/Body1"
|
|
|
|
|
app:backgroundTint="@color/gray_500"
|
2017-10-30 08:25:33 +00:00
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:inputType="number"/>
|
|
|
|
|
</merge>
|