<?xml version="1.0" encoding="utf-8"?>
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
|
<Button
|
android:id="@+id/bt_power"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="电源控制" />
|
|
<Button
|
android:id="@+id/bt_video"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="音视频" />
|
|
<Button
|
android:id="@+id/bt_serial"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="串口" />
|
|
<Button
|
android:id="@+id/bt_gpio"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="Gpio" />
|
|
<Button
|
android:id="@+id/bt_face"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="人脸识别" />
|
|
|
<Button
|
android:id="@+id/bt_tts"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="播放tts" />
|
|
|
<Button
|
android:id="@+id/bt_install"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="安装apk" />
|
|
<Button
|
android:id="@+id/bt_uninstall"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="卸载apk" />
|
|
<Button
|
android:id="@+id/bt_key"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="按键监听" />
|
|
|
<Button
|
android:id="@+id/bt_rfid"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="RFID卡" />
|
|
|
<Button
|
android:id="@+id/bt_imu"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="获取传感器数据" />
|
<Button
|
android:id="@+id/bt_device_info"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="设备信息" />
|
</LinearLayout>
|
|
</ScrollView>
|