pref_settings.xml 967 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="wrap_content"
  5. android:layout_height="wrap_content"
  6. android:gravity="center_vertical">
  7. <ImageButton
  8. android:id="@+id/button"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_marginEnd="8dp"
  12. android:background="?selectableItemBackgroundBorderless"
  13. android:contentDescription="@string/label_settings"
  14. android:padding="8dp"
  15. app:srcCompat="@drawable/ic_settings_24dp"
  16. app:tint="?attr/colorOnBackground" />
  17. <!-- Matches ID used in SwitchPreferenceCompat -->
  18. <androidx.appcompat.widget.SwitchCompat
  19. android:id="@+id/switchWidget"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content" />
  22. </LinearLayout>