|
|
@@ -1,6 +1,54 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent">
|
|
|
+<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="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ >
|
|
|
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/checkbox_all_agree"
|
|
|
+ style="@style/CommonCheckBox"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="@string/agree_all"
|
|
|
+ />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/checkbox_all_agree"
|
|
|
+ android:id="@+id/view"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:background="@color/CEBEBEB"/>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/view"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="21dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ >
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/checkbox_agree4"
|
|
|
+ style="@style/CommonCheckBox"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="@string/phone_identify_agree4"
|
|
|
+ />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/button_identify_agree4"
|
|
|
+ android:layout_width="19dp"
|
|
|
+ android:layout_height="19dp"
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
+ android:padding="4dp"
|
|
|
+ app:srcCompat="@drawable/icon_detail_arrow"/>
|
|
|
+ </LinearLayout>
|
|
|
</android.support.constraint.ConstraintLayout>
|