<?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="horizontal" android:padding="@dimen/dp_15"> <RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <LinearLayout android:id="@+id/tempLayout" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center_vertical" android:orientation="horizontal"> <TextView android:id="@+id/sampleNameView" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="电压表【X-M01】" android:textColor="@color/black" android:textSize="@dimen/sp_14" /> <TextView android:id="@+id/manufacturingCodeView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="@dimen/dp_5" android:text="出厂编号:123456" android:textColor="@color/black" android:textSize="@dimen/sp_12" /> </LinearLayout> <RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/tempLayout" android:orientation="vertical"> <TextView android:id="@+id/sampleCodeView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginVertical="@dimen/dp_5" android:text="样品编号:khyp202302160000" android:textColor="@color/gray" android:textSize="@dimen/sp_12" /> <TextView android:id="@+id/validDateView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/sampleCodeView" android:text="有效期至:2023-02-15 16:05:50" android:textColor="@color/red" android:textSize="@dimen/sp_12" /> <ImageView android:id="@+id/checkImageView" android:layout_width="@dimen/pngSize" android:layout_height="@dimen/pngSize" android:layout_alignParentEnd="true" android:layout_centerVertical="true" android:src="@drawable/tag_iv_selector" /> </RelativeLayout> </RelativeLayout> </LinearLayout>