123456789101112131415161718192021222324252627 |
- <?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="match_parent"
- android:orientation="vertical">
- <include layout="@layout/x7_activity_title_5" />
- <GridView xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/gv_purchase_history"
- style="@style/X7ScrollBarStyle.Gray"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_centerHorizontal="true"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="16dp"
- android:layout_marginRight="10dp"
- android:listSelector="@null"
- android:verticalSpacing="8dp"
- android:layout_marginBottom="8dp"
- tools:listitem="@layout/x7_item_purchase_history"
- />
- <include layout="@layout/money_record_notsell_ll" />
- </LinearLayout>
|