zhuguifei
2025-12-30 61eee1173c00a7ba9d9c748d28fe3acdb33b9441
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?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>