123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="50dp" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:gravity="center_vertical"
- android:orientation="horizontal" >
- <ImageView
- android:id="@+id/bdp_paycenter_iv_payment_icon"
- android:layout_width="27dp"
- android:layout_height="27dp"
- android:layout_marginLeft="20dp"
- android:src="@color/bdp_white" />
- <TextView
- android:id="@+id/bdp_paycenter_tv_payment_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="15dp"
- android:text="@string/bdp_paycenter_ku_bi_exchange"
- android:textColor="#333333"
- android:textSize="14sp" />
- <ImageView
- android:id="@+id/bdp_paycenter_iv_payment_ic_mark"
- android:layout_width="33dp"
- android:layout_height="12dp"
- android:layout_marginLeft="5dp"
- android:adjustViewBounds="true"
- android:src="@drawable/bdp_bg_pay_icon_mark_discount"
- android:visibility="gone" />
- <TextView
- android:id="@+id/bdp_paycenter_tv_specialofferdesc_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="5dp"
- android:layout_marginRight="35dp"
- android:ellipsize="end"
- android:singleLine="true"
- android:textColor="@color/bdp_color_999999"
- android:textSize="12sp"
- android:visibility="visible" />
- </LinearLayout>
- <View
- android:id="@+id/bdp_paycenter_iv_payment_sep"
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:layout_alignParentBottom="true"
- android:background="#d8d8d8" />
- <ImageView
- android:layout_width="18dp"
- android:layout_height="18dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="18dp"
- android:src="@drawable/bdp_ic_check_empty"
- android:visibility="gone" />
- <CheckBox
- android:id="@+id/bdp_checkbox_paychannel"
- android:layout_width="18dp"
- android:layout_height="18dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="18dp"
- android:background="@drawable/bdp_paycenter_checkbox"
- android:button="@null"
- android:clickable="false"
- android:focusable="false" />
- </RelativeLayout>
|