89 lines
2.8 KiB
XML
89 lines
2.8 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="300dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:background="@drawable/retacal_background"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/title1"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_margin="17dip"
|
||
|
|
android:gravity="center"
|
||
|
|
android:text="授权临时门禁"
|
||
|
|
android:textSize="17sp" />
|
||
|
|
|
||
|
|
<View
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="0.5dip"
|
||
|
|
android:layout_marginLeft="15dip"
|
||
|
|
android:layout_marginRight="15dip"
|
||
|
|
android:background="@color/lightlittleGrey" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/title2"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
|
||
|
|
android:layout_margin="17dip"
|
||
|
|
android:gravity="center"
|
||
|
|
android:text="密码"
|
||
|
|
android:textSize="15sp" />
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/myImage"
|
||
|
|
android:layout_width="220dp"
|
||
|
|
android:layout_height="220dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:src="@mipmap/qrcode" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/title3"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginLeft="50dip"
|
||
|
|
android:layout_marginTop="10dp"
|
||
|
|
android:layout_marginRight="50dip"
|
||
|
|
android:gravity="center"
|
||
|
|
android:text="注:分享临时门禁给访客,扫描二维码或输入密码开门"
|
||
|
|
|
||
|
|
android:textSize="14sp" />
|
||
|
|
|
||
|
|
<View
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="0.5dp"
|
||
|
|
android:layout_marginTop="8dp"
|
||
|
|
|
||
|
|
android:background="@color/gray" />
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="45dp"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tv_share"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:gravity="center"
|
||
|
|
android:text="微信分享"
|
||
|
|
android:textColor="@color/colorPrimary" />
|
||
|
|
|
||
|
|
<View
|
||
|
|
android:layout_width="0.5dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="@color/gray" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tv_cancel"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:gravity="center"
|
||
|
|
android:text="取消"
|
||
|
|
android:textColor="@color/black" />
|
||
|
|
</LinearLayout>
|
||
|
|
</LinearLayout>
|