|
@@ -0,0 +1,92 @@
|
|
|
|
|
+<?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:background="@color/gray_bg"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:background="@color/white"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="10dp"
|
|
|
|
|
+ android:background="@color/gray_bg" />
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/ll_phone"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="56dp"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:orientation="horizontal"
|
|
|
|
|
+ android:paddingLeft="24dp"
|
|
|
|
|
+ android:paddingRight="15dp">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:text="@string/mine_setting_phone"
|
|
|
|
|
+ android:textColor="@color/text_black_33"
|
|
|
|
|
+ android:textSize="@dimen/px42_14sp" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_setting_phone"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:gravity="right|center_vertical"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ android:text="181 1769 8872"
|
|
|
|
|
+ android:textColor="@color/text_black_66"
|
|
|
|
|
+ android:textSize="@dimen/px36_12sp" />
|
|
|
|
|
+
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:layout_width="8dp"
|
|
|
|
|
+ android:layout_height="14dp"
|
|
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
|
|
+ android:background="@mipmap/ic_gray_right" />
|
|
|
|
|
+
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="1dp"
|
|
|
|
|
+ android:background="@color/view_line_color_gray" />
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/ll_cancellation_account"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="56dp"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:orientation="horizontal"
|
|
|
|
|
+ android:paddingLeft="24dp"
|
|
|
|
|
+ android:paddingRight="15dp">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:text="@string/mine_cancellation_account"
|
|
|
|
|
+ android:textColor="@color/text_black_33"
|
|
|
|
|
+ android:textSize="@dimen/px42_14sp" />
|
|
|
|
|
+
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:layout_width="8dp"
|
|
|
|
|
+ android:layout_height="14dp"
|
|
|
|
|
+ android:background="@mipmap/ic_gray_right" />
|
|
|
|
|
+
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="1dp"
|
|
|
|
|
+ android:background="@color/view_line_color_gray" />
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+</LinearLayout>
|