realtimelocation/app/src/main/res/layout/activity_edit_house.xml
2022-02-16 10:40:48 +08:00

195 lines
7.5 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"
xmlns:tools="http://schemas.android.com/tools"
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" />
<TextView
style="@style/item_title"
android:text="小&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;区" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_community"
style="@style/sel_text_arrow"
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_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_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_card"
style="@style/item_content"
android:digits="@string/id_card_type"
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" />
<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>
<LinearLayout
android:id="@+id/ll_time"
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_time"
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="保&#160;&#160;&#160;&#160;存"
android:textColor="@color/white"
android:textSize="17sp" />
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>