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

337 lines
11 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">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
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
android:id="@+id/tv_issue_base_info"
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="房屋编号" />
<View style="@style/vertical_line" />
<EditText
android:id="@+id/et_house_number"
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_house_address"
style="@style/item_content"
android:hint="请输入房屋地址"
android:inputType="text" />
</LinearLayout>
<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_use"
style="@style/sel_text_arrow"
android:hint="请选择建筑用途" />
</LinearLayout>
<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" />
<EditText
android:id="@+id/et_house_area"
style="@style/item_content"
android:hint="请输入建筑面积(平方米)"
android:inputType="numberDecimal" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="visible" />
<TextView
style="@style/item_title"
android:text="证件代码" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_card_code"
style="@style/sel_text_arrow"
android:hint="请选择证件代码" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="visible" />
<TextView
style="@style/item_title"
android:text="证件号码" />
<View style="@style/vertical_line" />
<EditText
android:id="@+id/et_card_number"
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"
android:visibility="visible" />
<TextView
style="@style/item_title"
android:text="房主姓名" />
<View style="@style/vertical_line" />
<EditText
android:id="@+id/et_name"
style="@style/item_content"
android:hint="请输入房主姓名"
android:inputType="text" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="visible" />
<TextView
style="@style/item_title"
android:text="房主联系方式" />
<View style="@style/vertical_line" />
<EditText
android:id="@+id/et_phone"
style="@style/item_content"
android:hint="请输入房主联系方式"
android:inputType="number" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="visible" />
<TextView
style="@style/item_title"
android:text="房主现住详址" />
<View style="@style/vertical_line" />
<EditText
android:id="@+id/et_address"
style="@style/item_content"
android:hint="请输入房主现住祥址" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="visible" />
<TextView
style="@style/item_title"
android:text="出租用途" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_hire_type"
style="@style/sel_text_arrow"
android:hint="请选择出租用途" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="visible" />
<TextView
style="@style/item_title"
android:text="隐患类型" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_trouble"
style="@style/sel_text_arrow"
android:hint="请选择隐患类型" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="visible" />
<TextView
style="@style/item_title"
android:text="承租人身份证" />
<View style="@style/vertical_line" />
<EditText
android:id="@+id/et_id_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"
android:visibility="visible" />
<TextView
style="@style/item_title"
android:text="承租人姓名" />
<View style="@style/vertical_line" />
<EditText
android:id="@+id/et_lesse_name"
style="@style/item_content"
android:hint="请输入承租人姓名"
android:inputType="text" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="visible" />
<TextView
style="@style/item_title"
android:text="承租人联系方式" />
<View style="@style/vertical_line" />
<EditText
android:id="@+id/et_lesse_phone"
style="@style/item_content"
android:layout_gravity="center_vertical"
android:hint="请输入承租人联系方式"
android:inputType="number" />
</LinearLayout>
<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_location"
style="@style/sel_text_arrow"
android:hint="请选择经纬度" />
</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
<Button
android:id="@+id/btn_confirm"
style="@style/btn_save"
android:text="保&#160;&#160;&#160;&#160;存" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>