123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?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">
- <!--app:divider="@drawable/bssdk_slidingview_line"-->
- <!--app:showDividers="beginning|middle"-->
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/DIMEN_45DP"
- android:paddingLeft="@dimen/DIMEN_19DP"
- android:paddingRight="@dimen/DIMEN_10DP">
- <TextView
- android:id="@+id/tv_gift_bag_back"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_centerVertical="true"
- android:layout_marginRight="@dimen/DIMEN_18DP"
- android:drawableLeft="@drawable/bssdk_left_arrow"
- android:drawablePadding="@dimen/DIMEN_5DP"
- android:gravity="center"
- android:text="返回"
- android:textColor="@color/indicator_color"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:layout_marginLeft="@dimen/DIMEN_80DP"
- android:gravity="center"
- android:text="我的礼包"
- android:textColor="@color/white"
- android:textSize="@dimen/TEXT_SIZE_15SP"/>
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="2px"
- android:background="@drawable/bssdk_slidingview_line"/>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <com.bluestacks.sdk.widget.customview.BSLoadListView
- android:id="@+id/rv_gift_bag"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:divider="@drawable/bssdk_list_divider"
- android:dividerHeight="1px"
- android:footerDividersEnabled="false"
- android:visibility="gone"/>
- <com.bluestacks.sdk.widget.customview.BSCustomEmptyView
- android:id="@+id/cev_gift_bag"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="visible"/>
- </RelativeLayout>
- </LinearLayout>
|