1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:app="http://schemas.android.com/apk/res-auto">
4
5 <LinearLayout
6 android:layout_width="fill_parent"
7 android:layout_height="wrap_content"
8 android:paddingBottom="16dp"
9 android:orientation="vertical">
10
11 <TextView
12 android:id="@+id/label"
13 android:layout_width="match_parent"
14 android:layout_height="wrap_content"
15 android:paddingLeft="13dp"
16 android:paddingRight="8dp"
17 android:paddingBottom="8dp"
18 android:textAppearance="?textAppearanceBodyMedium" />
19
20 <com.google.android.material.slider.Slider
21 android:id="@+id/slider"
22 android:layout_width="match_parent"
23 android:layout_height="wrap_content"
24 android:paddingLeft="8dp"
25 android:paddingRight="8dp"
26 android:paddingBottom="8dp" />
27
28 <TextView
29 android:id="@+id/desc"
30 android:layout_width="match_parent"
31 android:layout_height="wrap_content"
32 android:paddingLeft="16dp"
33 android:paddingRight="8dp"
34 android:textStyle="italic"
35 android:textAppearance="?textAppearanceBodySmall" />
36
37 </LinearLayout>
38
39</layout>