From f71e74b5f0d2716fbf05da016cdaa18d64e09f80 Mon Sep 17 00:00:00 2001
From: xm <1271024303@qq.com>
Date: 星期四, 31 十二月 2020 17:01:18 +0800
Subject: [PATCH] 又换完成最新门锁。空气质量传感器完成数据和基本配置功能。开发图表和自动化的同事可下载此代码

---
 ZigbeeApp/GateWay.Droid/Resources/layout/fragment_call.axml |  133 ++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 133 insertions(+), 0 deletions(-)

diff --git a/ZigbeeApp/GateWay.Droid/Resources/layout/fragment_call.axml b/ZigbeeApp/GateWay.Droid/Resources/layout/fragment_call.axml
new file mode 100755
index 0000000..d3a2c32
--- /dev/null
+++ b/ZigbeeApp/GateWay.Droid/Resources/layout/fragment_call.axml
@@ -0,0 +1,133 @@
+锘�<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout
+    xmlns:android="http://schemas.android.com/apk/res/android"
+    android:orientation="vertical"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent">
+
+    <LinearLayout
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"        
+        android:orientation="horizontal">
+
+        <LinearLayout
+            android:layout_width="0dp"            
+            android:layout_weight="1"
+            android:gravity="center"
+            android:layout_height="wrap_content">
+
+             <ImageView
+                android:id="@+id/icon_screenshot"
+                android:layout_width="36dp"
+                android:layout_height="36dp"
+                android:layout_marginTop="5dp"
+                android:layout_marginBottom="5dp"
+                android:contentDescription="鎴浘"
+                android:src="@drawable/screenshot"/>                           
+
+            </LinearLayout>
+
+        <LinearLayout
+            android:layout_width="0dp"
+            android:layout_weight="1"
+            android:layout_height="wrap_content"
+            android:gravity="center">
+            
+            <ImageView
+                android:id="@+id/icon_unlock"                
+                android:layout_width="36dp"
+                android:layout_height="36dp"
+                android:layout_marginBottom="6dp"
+                android:layout_marginTop="6dp"
+                android:contentDescription="寮�閿�"
+                android:src="@drawable/unlock" />
+
+        </LinearLayout>
+        
+    </LinearLayout>
+
+    <View
+        android:layout_width="match_parent"        
+        android:layout_height="1px"
+        android:background="@color/color_disable"/>
+
+    <RelativeLayout
+        android:layout_width="match_parent"
+        android:layout_height="match_parent">
+
+        <TextView
+            android:id="@+id/tv_tip"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"            
+            android:layout_centerHorizontal="true"
+            android:layout_marginTop="30dp"
+            android:background="@drawable/tip_background"
+            android:textColor="@android:color/white"
+            android:textSize="15sp"
+            android:text="鏉ョ數涓�..."/>
+
+        <LinearLayout
+            android:layout_width="match_parent"            
+            android:layout_height="wrap_content"
+            android:layout_centerVertical="true"            
+            android:orientation="horizontal">
+
+            <RelativeLayout
+                android:id="@+id/rl_hangup"            
+                android:layout_width="0dp"                
+                android:layout_weight="1"
+                android:layout_height="wrap_content">
+                
+                <ImageView
+                    android:id="@+id/img_hangup"                    
+                    android:layout_width="58dp"
+                    android:layout_height="58dp"
+                    android:layout_centerHorizontal="true"
+                    android:src="@drawable/hangup"/>
+
+                <TextView
+                    android:id="@+id/tv_hangup"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"                    
+                    android:text="鎷掓帴"
+                    android:textSize="15sp"
+                    android:layout_marginTop="10dp"
+                    android:layout_centerHorizontal="true"
+                    android:textColor="@color/text_color"
+                    android:layout_below="@id/img_hangup"/>          
+
+            </RelativeLayout>       
+
+            <RelativeLayout                
+                android:id="@+id/rl_call"
+                android:layout_width="0dp"
+                android:layout_weight="1"
+                android:layout_height="wrap_content"
+                android:layout_alignParentRight="true"
+                android:layout_centerVertical="true">
+
+                <ImageView
+                    android:id="@+id/img_call"
+                    android:layout_width="58dp"
+                    android:layout_height="58dp"
+                    android:layout_centerHorizontal="true"
+                    android:src="@drawable/call"/>
+
+                <TextView
+                    android:id="@+id/tv_call"
+                    android:layout_width="wrap_content"                
+                    android:layout_height="wrap_content"                    
+                    android:text="鎺ュ惉"
+                    android:textSize="15sp"
+                    android:layout_marginTop="10dp"
+                    android:layout_centerHorizontal="true"
+                    android:textColor="@color/text_color"
+                    android:layout_below="@id/img_call"/>
+           
+            </RelativeLayout>
+
+        </LinearLayout>
+
+    </RelativeLayout>
+
+</LinearLayout>
\ No newline at end of file

--
Gitblit v1.8.0