2020-06-06 14:36:04 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="8dp"
|
2021-05-22 11:55:05 -04:00
|
|
|
android:background="@drawable/ripple_regular"
|
2020-06-06 14:36:04 -04:00
|
|
|
android:contentDescription="@string/label_settings"
|
|
|
|
android:padding="8dp"
|
|
|
|
app:srcCompat="@drawable/ic_settings_24dp"
|
|
|
|
app:tint="?attr/colorOnBackground" />
|
|
|
|
|
|
|
|
<!-- Matches ID used in SwitchPreferenceCompat -->
|
|
|
|
<androidx.appcompat.widget.SwitchCompat
|
|
|
|
android:id="@+id/switchWidget"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
</LinearLayout>
|