realtimelocation/app/src/main/res/layout/layout_base_info.xml
2020-12-21 15:20:31 +08:00

121 lines
3.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/cv_base_info"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
app:cardCornerRadius="5dp"
app:cardPreventCornerOverlap="true"
app:cardUseCompatPadding="false">
<com.sucstepsoft.realtimelocation.widget.ExpandableLinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:defaultItemCount="3"
app:expandText="点击展开"
app:hideText="点击收起"
app:useDefaultBottom="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
style="@style/issue_report_title"
android:padding="8dp"
android:text="基础信息"
android:textStyle="bold" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="姓名" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_name"
style="@style/sel_text_show"
android:hint="姓名" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="性别" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_gender"
style="@style/sel_text_show"
android:hint="性别" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="联系方式" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_phone"
style="@style/sel_text_show"
android:hint="联系方式" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="籍贯" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_native"
style="@style/sel_text_show"
android:hint="籍贯" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="现住地" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_cur_loc"
style="@style/sel_text_show"
android:hint="现在住地" />
</LinearLayout>
</com.sucstepsoft.realtimelocation.widget.ExpandableLinearLayout>
</android.support.v7.widget.CardView>