146 lines
5.4 KiB
XML
146 lines
5.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:overScrollMode="never"
|
|
android:scrollbars="none">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ll_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<android.support.v7.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
app:cardCornerRadius="5dp"
|
|
app:cardPreventCornerOverlap="true"
|
|
app:cardUseCompatPadding="false">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
style="@style/issue_report_title"
|
|
android:padding="8dp"
|
|
android:text="房屋信息"
|
|
android:textStyle="bold" />
|
|
|
|
<LinearLayout style="@style/item_gray">
|
|
|
|
<ImageView
|
|
style="@style/style_hint_star"
|
|
android:visibility="invisible" />
|
|
|
|
<TextView
|
|
style="@style/item_title"
|
|
android:text="小区" />
|
|
|
|
<View style="@style/vertical_line" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_area"
|
|
style="@style/sel_text_show"
|
|
android:hint="小区" />
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout style="@style/item_gray">
|
|
|
|
<ImageView style="@style/style_hint_star" />
|
|
|
|
<TextView
|
|
style="@style/item_title"
|
|
android:text="房屋名称" />
|
|
|
|
<View style="@style/vertical_line" />
|
|
|
|
<EditText
|
|
android:id="@+id/et_build_num"
|
|
style="@style/item_content"
|
|
android:hint="请输入房屋名称"
|
|
android:inputType="text" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout style="@style/item_gray">
|
|
|
|
<ImageView style="@style/style_hint_star" />
|
|
|
|
<TextView
|
|
style="@style/item_title"
|
|
android:text="房主姓名" />
|
|
|
|
<View style="@style/vertical_line" />
|
|
|
|
<EditText
|
|
android:id="@+id/et_owner_name"
|
|
style="@style/item_content"
|
|
android:hint="请输入房主姓名"
|
|
android:inputType="text" />
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout style="@style/item_gray">
|
|
|
|
<ImageView style="@style/style_hint_star" />
|
|
|
|
<TextView
|
|
style="@style/item_title"
|
|
android:text="房主联系方式" />
|
|
|
|
<View style="@style/vertical_line" />
|
|
|
|
<EditText
|
|
android:id="@+id/et_owner_phone"
|
|
style="@style/item_content"
|
|
android:digits="@string/id_number"
|
|
android:hint="请输入房主联系方式"
|
|
android:inputType="number" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout style="@style/item_gray">
|
|
|
|
<ImageView style="@style/style_hint_star" />
|
|
|
|
<TextView
|
|
style="@style/item_title"
|
|
android:text="房屋状态" />
|
|
|
|
<View style="@style/vertical_line" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_type"
|
|
style="@style/sel_text_arrow"
|
|
android:hint="请选择房屋状态" />
|
|
</LinearLayout>
|
|
|
|
|
|
<Button
|
|
android:id="@+id/btn_confirm"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="15dp"
|
|
android:background="@drawable/sel_btn_submit"
|
|
android:minHeight="0dp"
|
|
android:padding="10dp"
|
|
android:text="保    存"
|
|
android:textColor="@color/white"
|
|
android:textSize="17sp" />
|
|
</LinearLayout>
|
|
</android.support.v7.widget.CardView>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</android.support.v4.widget.NestedScrollView> |