summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/swipeactions_dialog.xml
blob: 637c376d52e1241efad9faecb79e4da2f72359bc (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="16dp">

    <com.google.android.material.materialswitch.MaterialSwitch
        android:id="@+id/enableSwitch"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:checked="true"
        android:text="@string/enable_swipeactions" />

    <include
        android:id="@+id/actionLeftContainer"
        layout="@layout/swipeactions_row" />

    <include
        android:id="@+id/actionRightContainer"
        layout="@layout/swipeactions_row" />

</LinearLayout>