1234567891011121314151617181920212223242526272829303132333435 |
- <?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:orientation="vertical"
- android:padding="6dp">
- <RelativeLayout
- android:id="@+id/rel_view"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:id="@+id/tv_hazard_name"
- android:layout_width="match_parent"
- android:layout_height="35dp"
- android:gravity="center_vertical"
- android:text="烘箱-H1002"
- android:textColor="@color/black" />
- <ImageView
- android:id="@+id/imgOpen"
- android:layout_width="25dp"
- android:layout_height="25dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:background="@mipmap/icon_kzjc_zk" />
- </RelativeLayout>
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/relativeContent"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"/>
- </LinearLayout>
|