<?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:background="@color/qmui_config_color_background"
|
android:orientation="vertical">
|
|
<include layout="@layout/include_head"/>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical"
|
android:padding="16dp">
|
|
<TextView
|
android:id="@+id/tv_status"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="状态: 未连接"
|
android:textSize="16sp"
|
android:textStyle="bold"
|
android:textColor="@android:color/black"/>
|
|
<TextView
|
android:id="@+id/tv_selected_service"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="当前选择服务: 无"
|
android:layout_marginTop="10dp"
|
android:textColor="@color/base_color"/>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="可用服务列表:"
|
android:layout_marginTop="10dp"/>
|
|
<ScrollView
|
android:layout_width="match_parent"
|
android:layout_height="250dp"
|
android:layout_marginTop="5dp"
|
android:background="@drawable/bg_round">
|
<com.qmuiteam.qmui.widget.grouplist.QMUIGroupListView
|
android:id="@+id/groupListView"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"/>
|
</ScrollView>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal"
|
android:gravity="center_vertical"
|
android:layout_marginTop="10dp">
|
<EditText
|
android:id="@+id/et_command"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:background="@drawable/bg_edittext"
|
android:padding="10dp"
|
android:textSize="14sp"
|
android:hint="请输入Hex指令 (如 A55A...)"/>
|
<com.qmuiteam.qmui.widget.roundwidget.QMUIRoundButton
|
android:id="@+id/btn_send"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:padding="10dp"
|
android:text="发送"
|
android:textColor="@color/white"
|
android:layout_marginLeft="10dp"/>
|
</LinearLayout>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="日志:"
|
android:layout_marginTop="10dp"/>
|
|
<ScrollView
|
android:layout_width="match_parent"
|
android:layout_height="150dp"
|
android:background="#FAFAFA"
|
android:layout_marginTop="5dp">
|
<TextView
|
android:id="@+id/tv_log"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:padding="5dp"
|
android:textSize="12sp"
|
android:fontFamily="monospace"/>
|
</ScrollView>
|
</LinearLayout>
|
|
</LinearLayout>
|