|
|
@@ -0,0 +1,106 @@
|
|
|
+<?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="wrap_content"
|
|
|
+ android:gravity="center_horizontal"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="322dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/corners_gray_f5_5dp"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:paddingLeft="29dp"
|
|
|
+ android:paddingRight="29dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="25dp"
|
|
|
+ android:layout_marginTop="19dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/mine_tips"
|
|
|
+ android:textColor="@color/text_black"
|
|
|
+ android:textSize="@dimen/px54_18sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:lineSpacingExtra="2dp"
|
|
|
+ android:text="@string/tips_dialog_1"
|
|
|
+ android:textColor="@color/text_black"
|
|
|
+ android:textSize="@dimen/px36_12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_user"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:text="@string/tips_user"
|
|
|
+ android:textColor="@color/text_blue_32"
|
|
|
+ android:textSize="@dimen/px36_12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_privacy"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="2dp"
|
|
|
+ android:text="@string/tips_privacy"
|
|
|
+ android:textColor="@color/text_blue_32"
|
|
|
+ android:textSize="@dimen/px36_12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:layout_marginBottom="19dp"
|
|
|
+ android:lineSpacingExtra="2dp"
|
|
|
+ android:text="@string/tips_dialog_2"
|
|
|
+ android:textColor="@color/text_black"
|
|
|
+ android:textSize="@dimen/px36_12sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:background="@color/view_line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="53dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_cancel"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/no_agree"
|
|
|
+ android:textColor="@color/text_gray_88"
|
|
|
+ android:textSize="@dimen/px48_16sp" />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:id="@+id/v_line"
|
|
|
+ android:layout_width="1dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/view_line_color" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_sure"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/agree_use"
|
|
|
+ android:textColor="@color/text_black"
|
|
|
+ android:textSize="@dimen/px48_16sp" />
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+</LinearLayout>
|