|
@@ -1,6 +1,86 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- android:orientation="vertical" android:layout_width="match_parent"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
+ <include layout="@layout/view_title"/>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/rl_account"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:padding="@dimen/default_content_margin">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="@dimen/company_16sp"
|
|
|
+ android:textColor="@color/color_333"
|
|
|
+ android:text="我是家长"/>
|
|
|
+
|
|
|
+ <android.support.v7.widget.SwitchCompat
|
|
|
+ android:id="@+id/sb_patriarch"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:theme="@style/Color1SwitchStyle" />
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <include layout="@layout/view_default_line"/>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:padding="@dimen/default_content_margin">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="@dimen/company_16sp"
|
|
|
+ android:textColor="@color/color_333"
|
|
|
+ android:text="真实姓名"/>
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/edit_username"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="20dp"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:gravity="right"
|
|
|
+ android:background="@null"
|
|
|
+ android:hint="请输入真实姓名"/>
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <include layout="@layout/view_default_line"/>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:padding="@dimen/default_content_margin">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textSize="@dimen/company_16sp"
|
|
|
+ android:textColor="@color/color_333"
|
|
|
+ android:text="身份认证"/>
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/edit_idcard"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="20dp"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:gravity="right"
|
|
|
+ android:background="@null"
|
|
|
+ android:hint="请输入身份证号"/>
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <include layout="@layout/view_default_line"/>
|
|
|
+
|
|
|
</LinearLayout>
|