You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
4.9 KiB
XML
121 lines
4.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/card_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginEnd="10dp"
|
|
android:layout_marginBottom="6dp"
|
|
app:cardBackgroundColor="@color/xui_config_color_white"
|
|
app:cardCornerRadius="8dp"
|
|
app:cardElevation="4dp"
|
|
app:cardPreventCornerOverlap="true"
|
|
app:contentPaddingBottom="5dp"
|
|
app:contentPaddingLeft="10dp"
|
|
app:contentPaddingRight="10dp"
|
|
app:contentPaddingTop="5dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:baselineAligned="false"
|
|
android:gravity="center_vertical"
|
|
android:minHeight="30dp"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:text="蓝牙名称:"
|
|
android:textColor="#666666"
|
|
android:textSize="16sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/device_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="10dp"
|
|
android:gravity="center|left"
|
|
android:textColor="#666666"
|
|
android:textSize="15sp" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:baselineAligned="false"
|
|
android:gravity="center_vertical"
|
|
android:minHeight="30dp"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:text="蓝牙状态:"
|
|
android:textColor="#666666"
|
|
android:textSize="16sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/device_status"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="10dp"
|
|
android:gravity="center|left"
|
|
android:textColor="#666666"
|
|
android:text="未绑定"
|
|
android:textSize="15sp" />
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:baselineAligned="false"
|
|
android:gravity="center_vertical|end"
|
|
android:minHeight="30dp"
|
|
android:orientation="horizontal">
|
|
<FrameLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:id="@+id/device_bind"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:layout_gravity="center_horizontal"
|
|
android:padding="3dp"
|
|
android:background="@drawable/btn_selector_bt"
|
|
android:textColor="#ffffff"
|
|
android:text="蓝牙绑定"
|
|
android:textSize="15sp" />
|
|
</FrameLayout>
|
|
<TextView
|
|
android:id="@+id/send_data"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="10dp"
|
|
android:padding="3dp"
|
|
android:gravity="center|end"
|
|
android:background="@drawable/btn_selector"
|
|
android:textColor="#ffffff"
|
|
android:visibility="gone"
|
|
android:text="数据采集"
|
|
android:textSize="15sp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView>
|