182 lines
5.8 KiB
XML
182 lines
5.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ll_base_info"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80dp"
|
|
android:background="@drawable/shape_blue_bg"
|
|
android:orientation="vertical"
|
|
android:padding="20dp">
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@id/ll_base_info"
|
|
android:layout_marginTop="-20dp"
|
|
android:layout_marginBottom="48dp"
|
|
android:background="@drawable/shape_rectangle_white_top">
|
|
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:id="@+id/nsv_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="25dp"
|
|
android:orientation="vertical"
|
|
android:overScrollMode="never"
|
|
android:scrollbars="none">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout style="@style/item_white">
|
|
|
|
<ImageView
|
|
style="@style/style_hint_star"
|
|
android:visibility="invisible" />
|
|
|
|
<TextView
|
|
style="@style/item_title_23"
|
|
android:text="姓名" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/tv_name"
|
|
style="@style/item_content_23" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout style="@style/item_white">
|
|
|
|
<ImageView
|
|
style="@style/style_hint_star"
|
|
android:visibility="invisible" />
|
|
|
|
<TextView
|
|
style="@style/item_title_23"
|
|
android:text="性别" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/tv_gender"
|
|
style="@style/item_content_23" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout style="@style/item_white">
|
|
|
|
<ImageView
|
|
style="@style/style_hint_star"
|
|
android:visibility="invisible" />
|
|
|
|
<TextView
|
|
style="@style/item_title_23"
|
|
android:text="民族" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/tv_nation"
|
|
style="@style/item_content_23" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout style="@style/item_white">
|
|
|
|
<ImageView
|
|
style="@style/style_hint_star"
|
|
android:visibility="invisible" />
|
|
|
|
<TextView
|
|
style="@style/item_title_23"
|
|
android:text="政治面貌" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/tv_political"
|
|
style="@style/item_content_23" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout style="@style/item_white">
|
|
|
|
<ImageView
|
|
style="@style/style_hint_star"
|
|
android:visibility="invisible" />
|
|
|
|
<TextView
|
|
style="@style/item_title_23"
|
|
android:text="出生日期" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/tv_date"
|
|
style="@style/item_content_23" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout style="@style/item_white">
|
|
|
|
<ImageView
|
|
style="@style/style_hint_star"
|
|
android:visibility="invisible" />
|
|
|
|
<TextView
|
|
style="@style/item_title_23"
|
|
android:text="学历" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/tv_edu"
|
|
style="@style/item_content_23" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout style="@style/item_white">
|
|
|
|
<ImageView
|
|
style="@style/style_hint_star"
|
|
android:visibility="invisible" />
|
|
|
|
<TextView
|
|
style="@style/item_title_23"
|
|
android:text="手机号码" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/tv_phone"
|
|
style="@style/item_content_23" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout style="@style/item_white">
|
|
|
|
<ImageView
|
|
style="@style/style_hint_star"
|
|
android:visibility="invisible" />
|
|
|
|
<TextView
|
|
style="@style/item_title_23"
|
|
android:text="固定电话" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/tv_tel"
|
|
style="@style/item_content_23" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|
|
</LinearLayout>
|
|
|
|
<Button
|
|
android:id="@+id/btn_del"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:background="@drawable/sel_btn_gray_red"
|
|
android:minHeight="0dp"
|
|
android:padding="10dp"
|
|
android:text="删    除"
|
|
android:textColor="@color/text_20"
|
|
android:textSize="17sp" />
|
|
</RelativeLayout> |