|
|
@@ -0,0 +1,641 @@
|
|
|
+<?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:background="@color/CFFFFFF">
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_filter_main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ tools:visibility="visible">
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_header_main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_filter_main"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/filter"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/image_view_cancel_main"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="8dp"
|
|
|
+ android:padding="10dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/text_view_filter_main"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/text_view_filter_main"
|
|
|
+ app:srcCompat="@drawable/icon_category_filter_close"
|
|
|
+ />
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_first_main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_header_main">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_filter_first_case"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="24dp"
|
|
|
+ android:layout_marginTop="33dp"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/first_filter_case_1"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:textSize="15sp"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ />
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_second"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_first_main"
|
|
|
+ >
|
|
|
+
|
|
|
+ <kr.co.zumo.app.lifeplus.view.custom.CustomSquareCheckBox
|
|
|
+ android:id="@+id/first"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ app:checkBoxText="@string/first_filter_case_1_contents_1"/>
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_third_main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="44dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_second"
|
|
|
+ >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_filter_second_case"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="24dp"
|
|
|
+ android:layout_marginTop="44dp"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/first_filter_case_2"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:textSize="15sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_fourth_main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_third_main"
|
|
|
+ >
|
|
|
+
|
|
|
+ <kr.co.zumo.app.lifeplus.view.custom.CustomSquareArrowCheckBox
|
|
|
+ android:id="@+id/second"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ app:ArrowCheckBoxText="@string/first_filter_case_2_contents_1"/>
|
|
|
+
|
|
|
+ <kr.co.zumo.app.lifeplus.view.custom.CustomSquareArrowCheckBox
|
|
|
+ android:id="@+id/second2"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/second"
|
|
|
+ android:layout_marginStart="7dp"
|
|
|
+ app:ArrowCheckBoxText="@string/first_filter_case_2_contents_6"/>
|
|
|
+
|
|
|
+
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_fifth_main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="44dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_fourth_main">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_filter_third_case"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="24dp"
|
|
|
+ android:layout_marginTop="44dp"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/first_filter_case_3"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:textSize="15sp"
|
|
|
+ />
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_sixth_main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_fifth_main">
|
|
|
+
|
|
|
+ <kr.co.zumo.app.lifeplus.view.custom.CustomSquareCheckBox
|
|
|
+ android:id="@+id/third"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ app:checkBoxText="@string/first_filter_case_3_contents_1"/>
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_seventh_main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="44dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_sixth_main">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_filter_fourth_case"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="24dp"
|
|
|
+ android:layout_marginTop="44dp"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/first_filter_case_4"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:textSize="15sp"
|
|
|
+ />
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_eighth_main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_seventh_main">
|
|
|
+
|
|
|
+ <kr.co.zumo.app.lifeplus.view.custom.CustomSquareCheckBox
|
|
|
+ android:id="@+id/fourth"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ app:checkBoxText="@string/first_filter_case_4_contents_1"/>
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_ninth_main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="44dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_eighth_main">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_filter_fifth_case"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="24dp"
|
|
|
+ android:layout_marginTop="44dp"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/first_filter_case_5"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:textSize="15sp"
|
|
|
+ />
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_tenth_main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_ninth_main">
|
|
|
+
|
|
|
+ <kr.co.zumo.app.lifeplus.view.custom.CustomSquareCheckBox
|
|
|
+ android:id="@+id/fifth"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ app:checkBoxText="@string/first_filter_case_5_contents_1"
|
|
|
+ />
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.Guideline
|
|
|
+ android:id="@+id/guide_end"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ app:layout_constraintGuide_end="42dp"/>
|
|
|
+
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_two_button_main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="42dp"
|
|
|
+ android:background="@color/C000000"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/guide_end"
|
|
|
+ >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_reset_main"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:paddingStart="10dp"
|
|
|
+ android:paddingTop="10dp"
|
|
|
+ android:paddingEnd="10dp"
|
|
|
+ android:paddingBottom="10dp"
|
|
|
+ android:text="@string/reset_filter"
|
|
|
+ android:textColor="@color/CFFFFFF"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/divider"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:id="@+id/divider"
|
|
|
+ android:layout_width="1dp"
|
|
|
+ android:layout_height="16dp"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:layout_marginBottom="8dp"
|
|
|
+ android:background="@color/C66FFFFFF"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_contents_show_main"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:paddingStart="10dp"
|
|
|
+ android:paddingTop="10dp"
|
|
|
+ android:paddingEnd="10dp"
|
|
|
+ android:paddingBottom="10dp"
|
|
|
+ android:text="@string/show_contents"
|
|
|
+ android:textColor="@color/CFFFFFF"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/divider"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <!--========================필터 디테일 진입시 화면=====================================-->
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/filter_layout_detail"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ tools:visibility="gone"
|
|
|
+ android:visibility="gone"
|
|
|
+ >
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_header"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="16dp"
|
|
|
+ android:layout_marginTop="18dp"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ app:srcCompat="@drawable/icon_header_back"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_filter"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:text="@string/select_foreign"
|
|
|
+ android:textColor="@color/C000000"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/image_view_cancel"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="8dp"
|
|
|
+ android:padding="10dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/text_view_filter"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/text_view_filter"
|
|
|
+ app:srcCompat="@drawable/icon_category_filter_close"
|
|
|
+ />
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_first"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="18dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_header">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/agree_all_check"
|
|
|
+ style="@style/CommonCheckBox"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/all"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ />
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:id="@+id/divider1"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:background="@color/CE5E5E5"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_first"
|
|
|
+ />
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_third"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="18dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/divider1">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_south_east_asia"
|
|
|
+ style="@style/CommonCheckBox"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/south_east_asia"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ />
|
|
|
+
|
|
|
+ <android.support.constraint.Guideline
|
|
|
+ android:id="@+id/guide_center1"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ app:layout_constraintGuide_percent="0.5"/>
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_japan"
|
|
|
+ style="@style/CommonCheckBox"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/japan"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="@id/guide_center1"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ />
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_fourth"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="18dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_third">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_china"
|
|
|
+ style="@style/CommonCheckBox"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/china"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ />
|
|
|
+
|
|
|
+ <android.support.constraint.Guideline
|
|
|
+ android:id="@+id/guide_center2"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ app:layout_constraintGuide_percent="0.5"/>
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_europe"
|
|
|
+ style="@style/CommonCheckBox"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/europe"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="@id/guide_center2"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ />
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_fifth"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="18dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_fourth">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_south_pacific"
|
|
|
+ style="@style/CommonCheckBox"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/south_pacific"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ />
|
|
|
+
|
|
|
+ <android.support.constraint.Guideline
|
|
|
+ android:id="@+id/guide_center3"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ app:layout_constraintGuide_percent="0.5"/>
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_america"
|
|
|
+ style="@style/CommonCheckBox"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/america"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="@id/guide_center3"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_sixth"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginTop="18dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/layout_fifth">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_india"
|
|
|
+ style="@style/CommonCheckBox"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/india"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ />
|
|
|
+
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+ <android.support.constraint.ConstraintLayout
|
|
|
+ android:id="@+id/layout_two_button"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="42dp"
|
|
|
+ android:background="@color/C000000"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_reset"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:paddingStart="10dp"
|
|
|
+ android:paddingTop="10dp"
|
|
|
+ android:paddingEnd="10dp"
|
|
|
+ android:paddingBottom="10dp"
|
|
|
+ android:text="@string/reset_filter"
|
|
|
+ android:textColor="@color/CFFFFFF"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/divider2"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:id="@+id/divider2"
|
|
|
+ android:layout_width="1dp"
|
|
|
+ android:layout_height="16dp"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:layout_marginBottom="8dp"
|
|
|
+ android:background="@color/C66FFFFFF"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toStartOf="@+id/text_view_contents_show"
|
|
|
+ app:layout_constraintHorizontal_bias="0.5"
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/text_view_reset"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/text_view_contents_show"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:lineSpacingExtra="6sp"
|
|
|
+ android:paddingStart="10dp"
|
|
|
+ android:paddingTop="10dp"
|
|
|
+ android:paddingEnd="10dp"
|
|
|
+ android:paddingBottom="10dp"
|
|
|
+ android:text="@string/apply"
|
|
|
+ android:textColor="@color/CFFFFFF"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/divider2"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
+
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+ </android.support.constraint.ConstraintLayout>
|
|
|
+
|
|
|
+
|
|
|
+</android.support.constraint.ConstraintLayout>
|