Newer
Older
CasicSmartTube / app / src / main / res / layout / item_group_rv.xml
Pengxh on 20 Sep 2022 2 KB fix(*): Bug fix
<?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="wrap_content"
    android:background="@color/white"
    android:paddingStart="@dimen/dp_10"
    android:paddingEnd="@dimen/dp_5">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:orientation="horizontal">

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="vertical">

            <TextView
                android:id="@+id/groupNameView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="项目编号: 20311" />

            <TextView
                android:id="@+id/groupLocationView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginVertical="@dimen/dp_3"
                android:text="项目位置: 北京市海淀区永定路街道正大路中国航天科工" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal">

                <TextView
                    android:id="@+id/totalDeviceNumView"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="设备总数: 99" />

                <TextView
                    android:id="@+id/inUseDeviceNumView"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="已激活: 90" />

                <TextView
                    android:id="@+id/notUseDeviceNumView"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="未激活: 9" />
            </LinearLayout>
        </LinearLayout>

        <ImageView
            style="@style/RelativeRightImageStyle"
            android:layout_marginEnd="0dp"
            android:src="@mipmap/well_location" />
    </LinearLayout>
</LinearLayout>