123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/relative_view"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingLeft="15dp"
- android:paddingRight="15dp">
- <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:layout_marginTop="8dp"
- android:gravity="center_vertical"
- android:text="烘箱-H1002"
- android:textColor="@color/black" />
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:background="@mipmap/icon_kzjc_zk" />
- </RelativeLayout>
- </LinearLayout>
|