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="@style/TextAppearance.Conversations.Subhead"
19 android:textColor="?attr/edit_text_color" />
20
21 <com.google.android.material.slider.Slider
22 android:id="@+id/slider"
23 android:layout_width="match_parent"
24 android:layout_height="wrap_content"
25 android:paddingLeft="8dp"
26 android:paddingRight="8dp"
27 android:paddingBottom="8dp"
28 app:trackColorInactive="?color_background_primary"
29 app:trackColorActive="?colorAccent" />
30
31 <TextView
32 android:id="@+id/desc"
33 android:layout_width="match_parent"
34 android:layout_height="wrap_content"
35 android:paddingLeft="16dp"
36 android:paddingRight="8dp"
37 android:textAppearance="@style/TextAppearance.Conversations.Status"
38 android:textColor="?android:textColorSecondary" />
39
40 </LinearLayout>
41
42</layout>