<?xml version="1.0" encoding="utf-8"?>
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:id="@+id/item"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="13dp"
|
android:layout_marginTop="10dp"
|
android:layout_marginRight="13dp"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="姓名:"
|
android:textSize="18sp" />
|
|
<TextView
|
android:id="@+id/userName"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="2"
|
android:text=""
|
android:textSize="18sp" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="3dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="身份证号:"
|
android:textSize="18sp" />
|
|
<TextView
|
android:id="@+id/cardID"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="2"
|
android:text=""
|
android:textSize="18sp" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="3dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="手机号:"
|
android:textSize="18sp" />
|
|
<TextView
|
android:id="@+id/phone"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="2"
|
android:text=""
|
android:textSize="18sp" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="3dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="地址:"
|
android:textSize="18sp" />
|
|
<TextView
|
android:id="@+id/address"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="2"
|
android:text=""
|
android:textSize="18sp" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="3dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="状态:"
|
android:textSize="18sp" />
|
|
<TextView
|
android:id="@+id/state"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="2"
|
android:text=""
|
android:textSize="18sp" />
|
</LinearLayout>
|
</LinearLayout>
|
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:layout_marginTop="13dp"
|
android:background="#000000" />
|
|
</LinearLayout>
|
</layout>
|