customize_app_drawer_fragment.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:id="@+id/customize_app_drawer_fragment"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. tools:context=".ui.options.CustomizeAppDrawerFragment">
  9. <TextView
  10. android:id="@+id/customize_app_drawer_fragment_visible_apps"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:textAppearance="@style/TextAppearance.AppCompat"
  14. android:layout_marginStart="@dimen/_16sdp"
  15. android:layout_marginLeft="@dimen/_16sdp"
  16. android:layout_marginTop="32dp"
  17. android:layout_marginEnd="@dimen/_16sdp"
  18. android:layout_marginRight="@dimen/_16sdp"
  19. android:textSize="@dimen/_20ssp"
  20. app:layout_constraintTop_toTopOf="parent"
  21. app:layout_constraintStart_toStartOf="parent"
  22. android:text="@string/customize_app_drawer_fragment_visible_apps" />
  23. <androidx.appcompat.widget.SwitchCompat
  24. android:id="@+id/customize_app_drawer_open_keyboard_switch"
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:layout_marginStart="@dimen/_16sdp"
  28. android:layout_marginLeft="@dimen/_16sdp"
  29. android:layout_marginTop="32dp"
  30. android:layout_marginEnd="@dimen/_16sdp"
  31. android:layout_marginRight="@dimen/_16sdp"
  32. android:layout_marginBottom="32dp"
  33. android:text="@string/customize_app_drawer_fragment_open_keyboard"
  34. android:textAppearance="@style/TextAppearance.AppCompat"
  35. android:textSize="@dimen/_20ssp"
  36. app:layout_constraintTop_toBottomOf="@id/customize_app_drawer_fragment_visible_apps"
  37. app:layout_constraintStart_toStartOf="parent"/>
  38. </androidx.constraintlayout.widget.ConstraintLayout>