dialog_with_checkbox.xml 908 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="vertical">
  6. <TextView
  7. android:id="@+id/description"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:textAppearance="@style/TextAppearance.Regular.Body1"/>
  11. <CheckBox
  12. android:id="@+id/checkbox_option"
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. android:layout_marginStart="-5dp"
  16. android:layout_marginEnd="0dp"
  17. android:layout_marginLeft="-5dp"
  18. android:layout_marginRight="0dp"
  19. android:layout_marginTop="@dimen/material_component_dialogs_padding_between_text_and_touch_target"/>
  20. </LinearLayout>