dialog_promotion.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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="match_parent">
  8. <android.support.constraint.ConstraintLayout
  9. android:id="@+id/constraintLayout"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. app:layout_constraintBottom_toBottomOf="parent"
  13. app:layout_constraintEnd_toEndOf="parent"
  14. app:layout_constraintStart_toStartOf="parent"
  15. app:layout_constraintTop_toTopOf="parent">
  16. <kr.co.zumo.app.lifeplus.view.custom.main.banner.MainBannerView
  17. android:id="@+id/promotion_banner"
  18. android:layout_width="261dp"
  19. android:layout_height="342dp"
  20. android:background="@color/C999999"
  21. />
  22. <ImageView
  23. android:id="@+id/image_view_cancel"
  24. android:layout_width="18dp"
  25. android:layout_height="18dp"
  26. android:layout_marginTop="25dp"
  27. android:layout_marginEnd="25dp"
  28. app:layout_constraintEnd_toEndOf="@id/promotion_banner"
  29. app:layout_constraintTop_toTopOf="@+id/promotion_banner"
  30. app:srcCompat="@drawable/icon_header_close"/>
  31. <android.support.constraint.ConstraintLayout
  32. android:id="@+id/constraintLayout2"
  33. android:layout_width="262dp"
  34. android:layout_height="wrap_content"
  35. android:background="@color/CFFFFFF"
  36. app:layout_constraintEnd_toEndOf="@id/promotion_banner"
  37. app:layout_constraintTop_toBottomOf="@id/promotion_banner"
  38. >
  39. <CheckBox
  40. android:id="@+id/check_box_not_show"
  41. android:layout_width="match_parent"
  42. android:layout_height="wrap_content"
  43. android:layout_marginStart="18dp"
  44. android:layout_marginTop="16dp"
  45. android:layout_marginBottom="16dp"
  46. android:background="@null"
  47. android:button="@null"
  48. android:drawableStart="@drawable/custom_check_box"
  49. android:drawablePadding="8dp"
  50. android:lineSpacingExtra="5sp"
  51. android:text="@string/not_show"
  52. android:textColor="@color/C999999"
  53. android:textSize="14sp"
  54. app:layout_constraintBottom_toBottomOf="parent"
  55. app:layout_constraintEnd_toEndOf="parent"
  56. app:layout_constraintStart_toStartOf="parent"
  57. app:layout_constraintTop_toTopOf="parent"
  58. />
  59. </android.support.constraint.ConstraintLayout>
  60. </android.support.constraint.ConstraintLayout>
  61. </android.support.constraint.ConstraintLayout>