38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
orientation="vertical"
|
|
background="#ffffff"
|
|
padding="20dp"
|
|
clickable="false"
|
|
layout_width="match_parent"
|
|
layout_height="match_parent">
|
|
<androidx.appcompat.widget.AppCompatSeekBar
|
|
id="@+id/limiter_seekbar"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"
|
|
max="500000"
|
|
progressDrawable="@drawable/seek_bar_style"
|
|
thumb="@drawable/seek_bar_thumb"/>
|
|
<LinearLayout
|
|
orientation="horizontal"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"
|
|
layout_marginTop="15dp">
|
|
<TextView
|
|
gravity="start"
|
|
id="@+id/start_limit"
|
|
layout_width="0dp"
|
|
layout_height="wrap_content"
|
|
text="@string/limit_sample_value"
|
|
layout_weight="1"
|
|
style="@style/2132017923"/>
|
|
<TextView
|
|
gravity="start"
|
|
id="@+id/end_limit"
|
|
layout_width="wrap_content"
|
|
layout_height="wrap_content"
|
|
text="@string/limit_value"
|
|
style="@style/2132017923"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|