1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?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:background="@drawable/bssdk_dialog"
- android:orientation="vertical"
- android:padding="1px">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/DIMEN_44DP"
- android:background="@drawable/bssdk_pay_dialog_top"
- android:orientation="horizontal">
- <ImageView
- android:id="@+id/iv_pay_vouchers_back"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentStart="true"
- android:layout_centerVertical="true"
- android:padding="@dimen/DIMEN_16DP"
- android:src="@drawable/bssdk_back_w"
- android:visibility="visible" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="我的代金券"
- android:textColor="@color/white" />
- <ImageView
- android:id="@+id/iv_pay_vouchers_close"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentEnd="true"
- android:layout_centerVertical="true"
- android:padding="@dimen/DIMEN_16DP"
- android:src="@drawable/bssdk_close_pay" />
- </RelativeLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <TextView
- android:id="@+id/tv_pay_vouchers_service_regulations"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/DIMEN_20DP"
- android:layout_marginEnd="@dimen/DIMEN_21DP"
- android:drawableEnd="@drawable/bssdk_service_regulations_icon"
- android:drawablePadding="@dimen/DIMEN_5DP"
- android:gravity="end|center_vertical"
- android:paddingTop="@dimen/DIMEN_5DP"
- android:paddingBottom="@dimen/DIMEN_5DP"
- android:textColor="@color/alpha_50_white" />
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1">
- <com.bluestacks.sdk.widget.customview.BSLoadListView
- android:id="@+id/lv_pay_vouchers"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:divider="@color/transparent"
- android:dividerHeight="@dimen/DIMEN_8DP"
- android:listSelector="@drawable/bssdk_item_bg_selector"
- android:visibility="gone" />
- <com.bluestacks.sdk.widget.customview.BSCustomEmptyView
- android:id="@+id/cev_pay_vouchers"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="visible" />
- </RelativeLayout>
- </LinearLayout>
- </LinearLayout>
|