83 lines
3.6 KiB
XML
83 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="@dimen/dp_10"
|
|
android:layout_marginVertical="@dimen/dp_5"
|
|
app:cardCornerRadius="10dp"
|
|
app:cardElevation="4dp">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:paddingVertical="@dimen/dp_12">
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="@dimen/dp_10">
|
|
|
|
<!-- 设备名称 -->
|
|
<TextView
|
|
android:id="@+id/tv_device_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="智能浇水设备A1"
|
|
android:textColor="@color/textPrimaryColor"
|
|
android:textSize="17sp"
|
|
android:textStyle="bold" />
|
|
|
|
<!-- 设备序列号 -->
|
|
<TextView
|
|
android:id="@+id/tv_device_serial"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_4"
|
|
android:text="YA226641000107"
|
|
android:textColor="@color/color_666666"
|
|
android:textSize="12sp" />
|
|
|
|
<!-- 电量信息 -->
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp_8"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<View
|
|
android:layout_width="@dimen/dp_4"
|
|
android:layout_height="@dimen/dp_4"
|
|
android:background="@drawable/shape_green_circle"/>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_battery_level"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/dp_4"
|
|
android:text="可绑定"
|
|
android:textColor="@color/color_666666"
|
|
android:textSize="12sp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
<CheckBox
|
|
android:id="@+id/radio"
|
|
android:layout_width="@dimen/dp_15"
|
|
android:layout_height="@dimen/dp_15"
|
|
android:layout_centerVertical="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_marginRight="@dimen/dp_20"
|
|
android:enabled="false"
|
|
android:background="@drawable/select_radio"
|
|
android:checked="false"
|
|
android:button="@null"/>
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView>
|
|
</LinearLayout> |