123456789101112131415161718192021222324252627282930313233343536373839 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/bdp_paycenter_layout_balance_pay"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_gravity="center"
- android:gravity="center"
- android:orientation="vertical" >
- <RelativeLayout
- android:id="@+id/bdp_paycenter_layout_use_kubi_balance"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_gravity="center_vertical"
- android:background="@drawable/bdp_paycenter_bg_pay_no_enough"
- android:paddingLeft="8dp"
- android:paddingRight="8dp" >
- <TextView
- android:id="@+id/bdp_paycenter_tv_payment_explain"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
- android:layout_toLeftOf="@+id/bdp_paycenter_cb_use_kubi"
- android:text="@string/bdp_paycenter_use_baidubean_explain"
- android:textColor="@color/bdp_color_999999" />
- <CheckBox
- android:id="@+id/bdp_paycenter_cb_use_kubi"
- android:layout_width="24dp"
- android:layout_height="24dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:background="@drawable/bdp_paycenter_checkbox_baidubean_selector"
- android:button="@null" />
- </RelativeLayout>
- </LinearLayout>
|