|
@@ -0,0 +1,74 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginVertical="8dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="权限申请说明"
|
|
|
+ android:textColor="#FF666666"
|
|
|
+ android:textFontWeight="600"
|
|
|
+ android:textSize="22dp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:lineHeight="18dp"
|
|
|
+ android:paddingHorizontal="20dp"
|
|
|
+
|
|
|
+ android:text=" 通过手机/平板给设备配网的过程中会用到蓝牙、WiFi等功能,这些功能需要用户授权相关权限后才可正常使用,本软件保证绝对不滥用和记录您的蓝牙、WIFI信息。"
|
|
|
+ android:textColor="#FF999999"
|
|
|
+ android:textSize="14dp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginVertical="12dp"
|
|
|
+ android:paddingHorizontal="20dp"
|
|
|
+ android:text="蓝牙权限说明"
|
|
|
+ android:textColor="#FF333333"
|
|
|
+ android:textFontWeight="500"
|
|
|
+ android:textSize="16dp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:paddingHorizontal="20dp"
|
|
|
+ android:text=" 本功能在配网过程中需要使用蓝牙来扫描和发现设备,以及连接设备和传输数据,应用需要通过蓝牙与设备互相传递数据。"
|
|
|
+ android:textColor="#FF999999" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginVertical="12dp"
|
|
|
+ android:paddingHorizontal="20dp"
|
|
|
+ android:text="WIFI权限说明"
|
|
|
+ android:textColor="#FF333333"
|
|
|
+ android:textFontWeight="500"
|
|
|
+ android:textSize="16dp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:paddingHorizontal="20dp"
|
|
|
+ android:text=" 本功能在配网过程中需要使用WIFI来扫描和发现附近的可用网络,应用通过选择可用网络来给设备配置WIFI网络。"
|
|
|
+ android:textColor="#FF999999" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/btn_intro_request"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_margin="16dp"
|
|
|
+ android:text="手动去设置授予" />
|
|
|
+</LinearLayout>
|