item_checked_title.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="vertical"
  6. android:padding="6dp">
  7. <RelativeLayout
  8. android:id="@+id/rel_view"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content">
  11. <TextView
  12. android:id="@+id/tv_hazard_name"
  13. android:layout_width="match_parent"
  14. android:layout_height="35dp"
  15. android:gravity="center_vertical"
  16. android:text="烘箱-H1002"
  17. android:textColor="@color/black" />
  18. <ImageView
  19. android:id="@+id/imgOpen"
  20. android:layout_width="25dp"
  21. android:layout_height="25dp"
  22. android:layout_alignParentRight="true"
  23. android:layout_centerVertical="true"
  24. android:background="@mipmap/icon_kzjc_zk" />
  25. </RelativeLayout>
  26. <androidx.recyclerview.widget.RecyclerView
  27. android:id="@+id/relativeContent"
  28. android:layout_width="match_parent"
  29. android:layout_height="wrap_content"/>
  30. </LinearLayout>