30 lines
959 B
XML
30 lines
959 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<LinearLayout
|
||
|
style="@style/item_white_bottom_border"
|
||
|
android:gravity="center_vertical">
|
||
|
|
||
|
<TextView
|
||
|
style="@style/item_title_wrap"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:text="门牌号" />
|
||
|
|
||
|
<EditText
|
||
|
android:id="@+id/et_num"
|
||
|
style="@style/item_content_match"
|
||
|
android:imeOptions="actionNext"
|
||
|
android:singleLine="true"
|
||
|
android:hint="请输入门牌号" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/btn_del"
|
||
|
android:layout_width="25dp"
|
||
|
android:layout_height="25dp"
|
||
|
android:src="@drawable/ic_house_del_icon" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|