<?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">
|
|
<include layout="@layout/include_head" />
|
|
<ScrollView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="#F5F5F5"
|
android:scrollbars="none">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:paddingBottom="24dp">
|
|
<!-- 硬件信息 -->
|
<com.qmuiteam.qmui.widget.grouplist.QMUIGroupListView
|
android:id="@+id/group_hardware"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="16dp" />
|
|
<!-- 低功耗蓝牙 -->
|
<com.qmuiteam.qmui.widget.grouplist.QMUIGroupListView
|
android:id="@+id/group_ble"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="8dp" />
|
|
<!-- 蓝牙音频 -->
|
<com.qmuiteam.qmui.widget.grouplist.QMUIGroupListView
|
android:id="@+id/group_audio"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="8dp" />
|
|
<!-- 屏幕信息 -->
|
<com.qmuiteam.qmui.widget.grouplist.QMUIGroupListView
|
android:id="@+id/group_screen"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="8dp" />
|
|
</LinearLayout>
|
</ScrollView>
|
</LinearLayout>
|