123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/main_color"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:paddingBottom="@dimen/DIMEN_2DP"
- android:paddingLeft="@dimen/DIMEN_19DP"
- android:paddingRight="@dimen/DIMEN_19DP"
- android:paddingTop="@dimen/DIMEN_20DP"
- android:weightSum="20">
- <TextView
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="6"
- android:text="有效时间"
- android:textColor="@color/white"
- android:textSize="@dimen/TEXT_SIZE_12SP"/>
- <TextView
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="4"
- android:text="金额(元)"
- android:textColor="@color/white"
- android:textSize="@dimen/TEXT_SIZE_12SP"/>
- <TextView
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="6"
- android:text="适用游戏"
- android:textColor="@color/white"
- android:textSize="@dimen/TEXT_SIZE_12SP"/>
- <TextView
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="4"
- android:text="使用状态"
- android:textColor="@color/white"
- android:textSize="@dimen/TEXT_SIZE_12SP"/>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/DIMEN_1DP"
- android:layout_marginLeft="@dimen/DIMEN_19DP"
- android:layout_marginRight="@dimen/DIMEN_19DP"
- android:background="@color/line_bg171d3c"/>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <com.bluestacks.sdk.widget.customview.BSLoadListView
- android:id="@+id/lv_user_voucher"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginLeft="@dimen/DIMEN_19DP"
- android:listSelector="@drawable/bssdk_item_bg_selector"
- android:visibility="gone"/>
- <com.bluestacks.sdk.widget.customview.BSCustomEmptyView
- android:id="@+id/cev_user_voucher"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- </RelativeLayout>
- </LinearLayout>
|