common_dialog_with_checkbox.xml 787 B

1234567891011121314151617181920212223
  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. android:paddingHorizontal="24dp"
  7. android:paddingTop="16dp">
  8. <TextView
  9. android:id="@+id/description"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:textAppearance="?attr/textAppearanceBody2" />
  13. <CheckBox
  14. android:id="@+id/checkbox_option"
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:layout_marginStart="-5dp"
  18. android:layout_marginTop="16dp"
  19. android:layout_marginEnd="0dp" />
  20. </LinearLayout>