46 lines
1.6 KiB
XML
46 lines
1.6 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/hurtz"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center_vertical"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/minus_db"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="0"
|
||
|
android:padding="8dp" />
|
||
|
|
||
|
<SeekBar
|
||
|
android:id="@+id/seekbar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:maxHeight="3dp"
|
||
|
android:padding="8dp"
|
||
|
android:progressDrawable="@drawable/color_progress_seek"
|
||
|
android:splitTrack="false"
|
||
|
android:thumb="@drawable/switch_thumb_material"
|
||
|
tools:progress="20" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/plus_db"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="0"
|
||
|
android:padding="8dp" />
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|