|
@@ -0,0 +1,119 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="#B3000000"
|
|
|
+ android:orientation="vertical"
|
|
|
+ tools:ignore="PxUsage">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="520px"
|
|
|
+ android:layout_gravity="center_horizontal"
|
|
|
+ android:layout_marginTop="197px"
|
|
|
+ android:background="@drawable/shape_rect_round_11_solid_white"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center_horizontal"
|
|
|
+ android:layout_marginTop="39px"
|
|
|
+ android:text="请选择签到类型"
|
|
|
+ android:textColor="#333333"
|
|
|
+ android:textSize="42px" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginTop="53px"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:paddingHorizontal="100px">
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/admissionRL"
|
|
|
+ android:layout_width="353px"
|
|
|
+ android:layout_height="320px"
|
|
|
+ android:layout_marginHorizontal="32px"
|
|
|
+ android:background="@drawable/shape_rect_round_11_solid_0183fa">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:layout_marginTop="36px"
|
|
|
+ android:src="@mipmap/dialog_sign_check_admission" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:layout_marginBottom="24px"
|
|
|
+ android:text="准入签到"
|
|
|
+ android:textColor="#0183fa"
|
|
|
+ android:textSize="42px" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/inspectionRL"
|
|
|
+ android:layout_width="353px"
|
|
|
+ android:layout_height="320px"
|
|
|
+ android:layout_marginHorizontal="32px"
|
|
|
+ android:background="@drawable/shape_rect_round_11_solid_ff8c00">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:layout_marginTop="36px"
|
|
|
+ android:src="@mipmap/dialog_sign_check_inspection" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:layout_marginBottom="24px"
|
|
|
+ android:text="巡查签到"
|
|
|
+ android:textColor="#ff8c00"
|
|
|
+ android:textSize="42px" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/bigDevRL"
|
|
|
+ android:layout_width="353px"
|
|
|
+ android:layout_height="320px"
|
|
|
+ android:layout_marginHorizontal="32px"
|
|
|
+ android:background="@drawable/shape_rect_round_11_solid_0f9c27">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:layout_marginTop="36px"
|
|
|
+ android:src="@mipmap/dialog_sign_check_big_dev" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:layout_marginBottom="24px"
|
|
|
+ android:text="大仪预约"
|
|
|
+ android:textColor="#0f9c27"
|
|
|
+ android:textSize="42px" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/close"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center_horizontal"
|
|
|
+ android:src="@mipmap/dialog_sign_check_close" />
|
|
|
+
|
|
|
+</LinearLayout>
|