|
|
@@ -1,148 +1,161 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content">
|
|
|
- <LinearLayout
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/shape_result_bg"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:orientation="vertical"
|
|
|
- android:background="@drawable/shape_result_bg">
|
|
|
+ android:layout_height="56dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:paddingStart="@dimen/margin_default"
|
|
|
+ android:paddingEnd="@dimen/margin_default"
|
|
|
+ android:text="@string/result"
|
|
|
+ android:textColor="@color/black_press"
|
|
|
+ android:textSize="@dimen/size_text_title_p" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="56dp"
|
|
|
- android:gravity="center_vertical"
|
|
|
- android:textColor="@color/black_press"
|
|
|
- android:text="@string/result"
|
|
|
- android:textSize="@dimen/size_text_title_p"
|
|
|
- android:paddingStart="@dimen/margin_default"
|
|
|
- android:paddingEnd="@dimen/margin_default"/>
|
|
|
-
|
|
|
- <View
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="2dp"
|
|
|
- android:background="@color/divider"/>
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="2dp"
|
|
|
+ android:background="@color/divider" />
|
|
|
+
|
|
|
+ <ScrollView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
|
|
|
<LinearLayout
|
|
|
- android:id="@+id/ll_postal"
|
|
|
- android:layout_width="wrap_content"
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:orientation="horizontal"
|
|
|
- android:gravity="center_vertical"
|
|
|
- android:paddingStart="@dimen/margin_default"
|
|
|
- android:paddingEnd="@dimen/margin_default"
|
|
|
- android:layout_marginTop="@dimen/margin_default">
|
|
|
- <TextView
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/ll_postal"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:textSize="@dimen/size_text_title"
|
|
|
- android:textColor="@color/black_press"
|
|
|
- android:text="@string/postal_code_title"/>
|
|
|
+ android:layout_marginTop="@dimen/margin_default"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:paddingStart="@dimen/margin_default"
|
|
|
+ android:paddingEnd="@dimen/margin_default">
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/tv_postal"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:textSize="@dimen/size_text_title"
|
|
|
- android:textColor="@color/gray_text" />
|
|
|
- </LinearLayout>
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/postal_code_title"
|
|
|
+ android:textColor="@color/black_press"
|
|
|
+ android:textSize="@dimen/size_text_title" />
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:id="@+id/ll_address"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:orientation="horizontal"
|
|
|
- android:gravity="center_vertical"
|
|
|
- android:paddingStart="@dimen/margin_default"
|
|
|
- android:paddingEnd="@dimen/margin_default"
|
|
|
- android:layout_marginTop="@dimen/margin_default">
|
|
|
- <TextView
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_postal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textColor="@color/gray_text"
|
|
|
+ android:textSize="@dimen/size_text_title" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/ll_address"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:textSize="@dimen/size_text_title"
|
|
|
- android:textColor="@color/black_press"
|
|
|
- android:text="@string/address_title"/>
|
|
|
+ android:layout_marginTop="@dimen/margin_default"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:paddingStart="@dimen/margin_default"
|
|
|
+ android:paddingEnd="@dimen/margin_default">
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/tv_address"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:textSize="@dimen/size_text_title"
|
|
|
- android:textColor="@color/gray_text" />
|
|
|
- </LinearLayout>
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/address_title"
|
|
|
+ android:textColor="@color/black_press"
|
|
|
+ android:textSize="@dimen/size_text_title" />
|
|
|
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_address"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textColor="@color/gray_text"
|
|
|
+ android:textSize="@dimen/size_text_title" />
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:id="@+id/ll_name"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:orientation="horizontal"
|
|
|
- android:gravity="center_vertical"
|
|
|
- android:paddingStart="@dimen/margin_default"
|
|
|
- android:paddingEnd="@dimen/margin_default"
|
|
|
- android:layout_marginTop="@dimen/margin_default">
|
|
|
- <TextView
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/ll_name"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:textSize="@dimen/size_text_title"
|
|
|
- android:textColor="@color/black_press"
|
|
|
- android:text="@string/name_title"/>
|
|
|
+ android:layout_marginTop="@dimen/margin_default"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:paddingStart="@dimen/margin_default"
|
|
|
+ android:paddingEnd="@dimen/margin_default">
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/tv_name"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:textSize="@dimen/size_text_title"
|
|
|
- android:textColor="@color/gray_text"/>
|
|
|
- </LinearLayout>
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/name_title"
|
|
|
+ android:textColor="@color/black_press"
|
|
|
+ android:textSize="@dimen/size_text_title" />
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:orientation="horizontal"
|
|
|
- android:gravity="center"
|
|
|
- android:paddingStart="@dimen/margin_default"
|
|
|
- android:paddingEnd="@dimen/margin_default"
|
|
|
- android:layout_marginTop="64dp"
|
|
|
- android:layout_marginBottom="32dp">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/tv_copy"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:minWidth="114dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:singleLine="true"
|
|
|
- android:ellipsize="end"
|
|
|
- android:gravity="center"
|
|
|
- android:textSize="11.5sp"
|
|
|
- android:textColor="@color/white"
|
|
|
- android:paddingStart="@dimen/margin_s"
|
|
|
- android:paddingEnd="@dimen/margin_s"
|
|
|
- android:paddingTop="@dimen/margin_button"
|
|
|
- android:paddingBottom="@dimen/margin_button"
|
|
|
- android:background="@drawable/selector_copy"
|
|
|
- android:text="@string/copy"/>
|
|
|
-
|
|
|
- <Space
|
|
|
- android:layout_width="@dimen/margin_default"
|
|
|
- android:layout_height="wrap_content"/>
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/tv_cancel"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:minWidth="114dp"
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_name"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textColor="@color/gray_text"
|
|
|
+ android:textSize="@dimen/size_text_title" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:singleLine="true"
|
|
|
- android:ellipsize="end"
|
|
|
- android:textColor="@color/black_press"
|
|
|
+ android:layout_marginTop="64dp"
|
|
|
+ android:layout_marginBottom="32dp"
|
|
|
android:gravity="center"
|
|
|
- android:textSize="11.8sp"
|
|
|
- android:paddingStart="@dimen/margin_s"
|
|
|
- android:paddingEnd="@dimen/margin_s"
|
|
|
- android:paddingTop="@dimen/margin_button"
|
|
|
- android:paddingBottom="@dimen/margin_button"
|
|
|
- android:background="@drawable/selector_cancel"
|
|
|
- android:text="@string/cancel"/>
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:paddingStart="@dimen/margin_default"
|
|
|
+ android:paddingEnd="@dimen/margin_default">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_copy"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/selector_copy"
|
|
|
+ android:ellipsize="end"
|
|
|
+ android:gravity="center"
|
|
|
+ android:minWidth="114dp"
|
|
|
+ android:paddingStart="@dimen/margin_s"
|
|
|
+ android:paddingTop="@dimen/margin_button"
|
|
|
+ android:paddingEnd="@dimen/margin_s"
|
|
|
+ android:paddingBottom="@dimen/margin_button"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:text="@string/copy"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="11.5sp" />
|
|
|
+
|
|
|
+ <Space
|
|
|
+ android:layout_width="@dimen/margin_default"
|
|
|
+ android:layout_height="wrap_content" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_cancel"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/selector_cancel"
|
|
|
+ android:ellipsize="end"
|
|
|
+ android:gravity="center"
|
|
|
+ android:minWidth="114dp"
|
|
|
+ android:paddingStart="@dimen/margin_s"
|
|
|
+ android:paddingTop="@dimen/margin_button"
|
|
|
+ android:paddingEnd="@dimen/margin_s"
|
|
|
+ android:paddingBottom="@dimen/margin_button"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:text="@string/cancel"
|
|
|
+ android:textColor="@color/black_press"
|
|
|
+ android:textSize="11.8sp" />
|
|
|
+ </LinearLayout>
|
|
|
</LinearLayout>
|
|
|
- </LinearLayout>
|
|
|
-</ScrollView>
|
|
|
+ </ScrollView>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+</LinearLayout>
|