event_participation_checkbox.xml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:layout_width="match_parent"
  7. android:layout_height="wrap_content">
  8. <CheckBox
  9. android:id="@+id/check_box"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:background="@drawable/custom_rectangle_radio_selector"
  13. android:button="@null"
  14. android:drawableLeft="@drawable/custom_check_box"
  15. android:drawablePadding="8dp"
  16. android:lineSpacingExtra="4sp"
  17. android:paddingStart="23dp"
  18. android:paddingTop="17dp"
  19. android:paddingEnd="23dp"
  20. android:paddingBottom="17dp"
  21. android:saveEnabled="false"
  22. android:textColor="@drawable/my_faq_radio_text_selector"
  23. android:textSize="12sp"
  24. app:layout_constraintBottom_toBottomOf="parent"
  25. app:layout_constraintEnd_toEndOf="parent"
  26. app:layout_constraintStart_toStartOf="parent"
  27. app:layout_constraintTop_toTopOf="parent"
  28. tools:text="옥외광고를 보고 설치함"
  29. />
  30. </android.support.constraint.ConstraintLayout>