blob: 1fbffa06bdbc629c6004fcc703450daf46ac3831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_height="52dp"
android:layout_width="match_parent"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:gravity="center_vertical"
>
<ImageView
android:id="@+id/icon"
android:layout_height="32dp"
android:layout_width="32dp"
/>
<TextView
android:id="@+id/title"
android:layout_centerVertical="true"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="1"
android:maxLines="1"
android:ellipsize="end"
android:layout_marginStart="16dp"
android:textSize="14sp"
tools:text="Body sensor"
/>
<CheckBox
android:id="@+id/toggle"
android:layout_width="wrap_content"
android:layout_height="24dp"
android:layoutDirection="rtl"
android:checked="true"
/>
</androidx.appcompat.widget.LinearLayoutCompat>
|