| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?xml version="1.0" encoding="utf-8"?>
- <android.support.constraint.ConstraintLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <android.support.constraint.ConstraintLayout
- android:id="@+id/constraintLayout"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent">
- <kr.co.zumo.app.lifeplus.view.custom.main.banner.MainBannerView
- android:id="@+id/promotion_banner"
- android:layout_width="261dp"
- android:layout_height="342dp"
- android:background="@color/C999999"
- />
- <ImageView
- android:id="@+id/image_view_cancel"
- android:layout_width="18dp"
- android:layout_height="18dp"
- android:layout_marginTop="25dp"
- android:layout_marginEnd="25dp"
- app:layout_constraintEnd_toEndOf="@id/promotion_banner"
- app:layout_constraintTop_toTopOf="@+id/promotion_banner"
- app:srcCompat="@drawable/icon_header_close"/>
- <android.support.constraint.ConstraintLayout
- android:id="@+id/constraintLayout2"
- android:layout_width="262dp"
- android:layout_height="wrap_content"
- android:background="@color/CFFFFFF"
- app:layout_constraintEnd_toEndOf="@id/promotion_banner"
- app:layout_constraintTop_toBottomOf="@id/promotion_banner"
- >
- <CheckBox
- android:id="@+id/check_box_not_show"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="18dp"
- android:layout_marginTop="16dp"
- android:layout_marginBottom="16dp"
- android:background="@null"
- android:button="@null"
- android:drawableStart="@drawable/custom_check_box"
- android:drawablePadding="8dp"
- android:lineSpacingExtra="5sp"
- android:text="@string/not_show"
- android:textColor="@color/C999999"
- android:textSize="14sp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- />
- </android.support.constraint.ConstraintLayout>
- </android.support.constraint.ConstraintLayout>
- </android.support.constraint.ConstraintLayout>
|