<?xml version="1.0" encoding="utf-8"?> <layout> <data> <variable name="item" type="com.dayu.order.api.protocol.LogsticsInfo" /> </data> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/dp_15" android:layout_marginTop="@dimen/dp_15" android:orientation="vertical"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/couries_company_name" android:textSize="@dimen/sp_14" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@{item.shipperName}"></TextView> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/dp_12" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/tv_part_num" android:textSize="@dimen/sp_14" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@{item.logisticsCode}"></TextView> </LinearLayout> <View android:layout_width="match_parent" android:layout_height="1dp" android:layout_marginBottom="30dp" android:layout_marginTop="15dp" android:background="@color/cl_line" /> </LinearLayout> </layout>