|
|
@@ -0,0 +1,277 @@
|
|
|
+<?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_header"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <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="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/all"
|
|
|
+ />
|
|
|
+ </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:paddingTop="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:paddingTop="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>
|