12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:background="@color/x7_white"
- android:layout_height="wrap_content">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/x7_gray_back_shap"
- android:layout_marginRight="5dp"
- android:paddingLeft="10dp"
- android:paddingTop="5dp"
- android:paddingRight="10dp"
- android:paddingBottom="5dp">
- <TextView
- android:id="@+id/tv_purchase_time"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentTop="true"
- android:layout_alignParentRight="true"
- android:textSize="10dp"
- android:textColor="@color/x7_text_gray" />
- <TextView
- android:id="@+id/tv_purchase_price"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
- android:layout_marginTop="5dp"
- android:layout_toLeftOf="@+id/tv_purchase_goods"
- android:textSize="20dp" />
- <TextView
- android:id="@+id/tv_purchase_goods"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/tv_purchase_time"
- android:layout_alignParentRight="true"
- android:layout_marginTop="5dp"
- android:textSize="10dp"
- android:textColor="@color/x7_text_gray" />
- </RelativeLayout>
- </RelativeLayout>
|