Files
HouseProperty/app/src/main/res/layout/activity_entranceguard_control2.xml
jinyuer 7e6b8c2fc2 1
2020-09-27 16:17:08 +08:00

184 lines
9.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".EntranceguardControl1Activity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#f7f7f7"
android:fitsSystemWindows="true">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#f7f7f7"
android:fitsSystemWindows="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#f7f7f7">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#f7f7f7"
android:orientation="vertical">
<LinearLayout
android:visibility="gone"
android:id="@+id/ll_address"
android:layout_width="match_parent"
android:layout_height="35dp"
android:background="@color/LightGraydddddd"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_address"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="16dp"
android:layout_weight="1"
/>
<ImageView
android:layout_width="14dp"
android:layout_height="14dp"
android:layout_gravity="center_vertical"
android:layout_marginRight="16dp"
android:src="@mipmap/returnme"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dip"
android:background="@drawable/retacal_background"
android:orientation="vertical"
android:paddingLeft="15dip"
android:paddingRight="15dip">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="20dip"
android:gravity="center"
android:text="时间" />
<RadioGroup
android:id="@+id/myradio2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
android:id="@+id/myradio21"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="3dip"
android:background="@drawable/drawableforitemnormal"
android:button="@null"
android:padding="20dip"
android:checked="true"
android:text="7天" />
<RadioButton
android:id="@+id/myradio22"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="3dip"
android:background="@drawable/drawableforitemnormal"
android:button="@null"
android:padding="20dip"
android:text="1月" />
<RadioButton
android:id="@+id/myradio23"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="3dip"
android:background="@drawable/drawableforitemnormal"
android:button="@null"
android:padding="20dip"
android:text="3月" />
</RadioGroup>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dip"
android:background="@color/lightlittleGrey" />
<!-- <LinearLayout-->
<!-- android:layout_width="match_parent"-->
<!-- android:orientation="vertical"-->
<!-- android:layout_height="wrap_content">-->
<!-- <TextView-->
<!-- android:layout_width="wrap_content"-->
<!-- android:text="地址"-->
<!-- android:layout_marginLeft="20dip"-->
<!-- android:layout_marginRight="20dp"-->
<!-- android:layout_marginTop="20dp"-->
<!-- android:layout_height="wrap_content" />-->
<!-- <RadioGroup-->
<!-- android:layout_width="match_parent"-->
<!-- android:id="@+id/myradio"-->
<!-- android:layout_margin="18dip"-->
<!-- android:layout_height="match_parent">-->
<!-- </RadioGroup>-->
<!-- </LinearLayout>-->
<LinearLayout
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="20dip"
android:text="访客手机号" />
<EditText
android:id="@+id/telephone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dip"
android:background="@null"
android:hint="访客手机号"
android:textSize="@dimen/textedit" />
</LinearLayout>
</LinearLayout>
<TextView
android:id="@+id/confirm"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dip"
android:layout_marginTop="20dip"
android:layout_marginRight="15dip"
android:layout_marginBottom="50dip"
android:background="@drawable/selector_common_btn"
android:gravity="center"
android:padding="15dip"
android:text="确认授权"
android:textColor="@color/white" />
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
</layout>