|
|
@@ -0,0 +1,81 @@
|
|
|
+<?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/bg_gray_f5"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/ll_tips"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="71dp"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:paddingLeft="20dp"
|
|
|
+ android:paddingRight="20dp">
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="33dp"
|
|
|
+ android:layout_height="33dp"
|
|
|
+ android:background="@mipmap/ic_mine_tips" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="14dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="@string/mine_tips"
|
|
|
+ android:textColor="@color/text_black"
|
|
|
+ android:textSize="@dimen/px39_13sp" />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="9dp"
|
|
|
+ android:layout_height="14dp"
|
|
|
+ android:background="@mipmap/ic_right_gray" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/ll_version"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="71dp"
|
|
|
+ android:layout_marginTop="2dp"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:paddingLeft="20dp"
|
|
|
+ android:paddingRight="20dp">
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="33dp"
|
|
|
+ android:layout_height="33dp"
|
|
|
+ android:background="@mipmap/ic_mine_version" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="14dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="@string/mine_version"
|
|
|
+ android:textColor="@color/text_black"
|
|
|
+ android:textSize="@dimen/px39_13sp" />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="9dp"
|
|
|
+ android:layout_height="14dp"
|
|
|
+ android:background="@mipmap/ic_right_gray" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_unregister"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="48dp"
|
|
|
+ android:layout_marginTop="13.5dp"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/unregister"
|
|
|
+ android:textColor="@color/text_black"
|
|
|
+ android:textSize="@dimen/px45_15sp" />
|
|
|
+
|
|
|
+</LinearLayout>
|