|
@@ -0,0 +1,98 @@
|
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:orientation="vertical"
|
|
|
|
|
+ android:background="@drawable/shape_result_bg">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="56dp"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:textColor="@color/black_press"
|
|
|
|
|
+ android:textSize="@dimen/size_text_title"
|
|
|
|
|
+ android:text="@string/result"
|
|
|
|
|
+ android:paddingStart="@dimen/margin_default"
|
|
|
|
|
+ android:paddingEnd="@dimen/margin_default"/>
|
|
|
|
|
+
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="2dp"
|
|
|
|
|
+ android:background="@color/divider"/>
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_postal"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:paddingStart="@dimen/margin_default"
|
|
|
|
|
+ android:paddingEnd="@dimen/margin_default"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ android:ellipsize="end"
|
|
|
|
|
+ android:textColor="@color/black_press"
|
|
|
|
|
+ android:layout_marginTop="@dimen/margin_dialog"
|
|
|
|
|
+ android:visibility="invisible"/>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_address"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:paddingStart="@dimen/margin_default"
|
|
|
|
|
+ android:paddingEnd="@dimen/margin_default"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ android:ellipsize="end"
|
|
|
|
|
+ android:textColor="@color/black_press"
|
|
|
|
|
+ android:layout_marginTop="@dimen/margin_dialog"
|
|
|
|
|
+ android:visibility="invisible"/>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_name"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:paddingStart="@dimen/margin_default"
|
|
|
|
|
+ android:paddingEnd="@dimen/margin_default"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ android:ellipsize="end"
|
|
|
|
|
+ android:textColor="@color/black_press"
|
|
|
|
|
+ android:layout_marginTop="@dimen/margin_dialog"
|
|
|
|
|
+ android:visibility="invisible"/>
|
|
|
|
|
+
|
|
|
|
|
+ <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="114dp"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ android:ellipsize="end"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
|
+ android:paddingTop="@dimen/margin_default"
|
|
|
|
|
+ android:paddingBottom="@dimen/margin_default"
|
|
|
|
|
+ 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="114dp"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ android:ellipsize="end"
|
|
|
|
|
+ android:textColor="@color/black_press"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:paddingTop="@dimen/margin_default"
|
|
|
|
|
+ android:paddingBottom="@dimen/margin_default"
|
|
|
|
|
+ android:background="@drawable/selector_cancel"
|
|
|
|
|
+ android:text="@string/cancel"/>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+</LinearLayout>
|