summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/dialog_switch_preference.xml
blob: 87f321c86fcd01d8ee114e5eb45ae3a526239333 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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="match_parent"
    android:padding="24dp">

    <androidx.appcompat.widget.SwitchCompat
        android:id="@+id/dialogSwitch"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        tools:text="Switch" />

</LinearLayout>