Files
HouseProperty/app/src/main/res/layout/activity_entranceguard.xml
2020-08-03 09:11:54 +08:00

70 lines
2.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<layout 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"
tools:context=".EntranceguardActivity">
<LinearLayout
android:layout_width="match_parent"
android:fitsSystemWindows="true"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:background="#f7f7f7"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_margin="15dip"
android:background="@drawable/retacal_background"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:orientation="vertical"
android:id="@+id/control1"
android:layout_gravity="center"
android:layout_centerInParent="true"
android:layout_height="wrap_content">
<ImageView
android:layout_width="match_parent"
android:src="@mipmap/menjing"
android:layout_margin="17dip"
android:layout_height="wrap_content" />
<TextView
android:layout_width="wrap_content"
android:text="授权访客密码"
android:layout_marginBottom="15dip"
android:layout_height="wrap_content" />
</LinearLayout>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_marginLeft="15dip"
android:layout_marginRight="15dip"
android:background="@drawable/retacal_background"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:orientation="vertical"
android:layout_gravity="center"
android:layout_centerInParent="true"
android:id="@+id/control2"
android:layout_height="wrap_content">
<ImageView
android:layout_width="match_parent"
android:src="@mipmap/shaoma"
android:layout_margin="17dip"
android:layout_height="wrap_content" />
<TextView
android:layout_width="wrap_content"
android:text="授权访客二维码"
android:layout_marginBottom="15dip"
android:layout_height="wrap_content" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>
</LinearLayout>
</layout>