12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?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:orientation="vertical" >
- <LinearLayout
- android:id="@+id/bdp_paycenter_layout_recommend_payment"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="15dp"
- android:layout_marginTop="8dp"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" >
- <TextView
- android:id="@+id/bdp_paycenter_tv_recommend_payment_mode_select"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/bdp_paycenter_recommend_pay_mode_select"
- android:textColor="#333333"
- android:textSize="@dimen/bdp_paycenter_text_size_14_sp" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/bdp_paycenter_layout_recommend_content"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/bdp_paycenter_layout_paymode"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
- <LinearLayout
- android:id="@+id/bdp_paycenter_channel_tip_layout"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:visibility="gone" >
- <TextView
- android:id="@+id/bdp_paycenter_channel_select_tips"
- android:layout_width="0dip"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="15dp"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:text="@string/bdp_paycenter_pay_mode_select"
- android:textColor="#333333"
- android:textSize="@dimen/bdp_paycenter_text_size_14_sp" />
- <ImageView
- android:id="@+id/bdp_paycenter_channel_select_image"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:paddingRight="5dp"
- android:src="@drawable/bdp_account_icon_unfold_selector" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:layout_marginLeft="16dp"
- android:layout_marginTop="5dp"
- android:background="#d8d8d8"
- android:visibility="gone" />
- <LinearLayout
- android:id="@+id/bdp_paycenter_channel_adapter_layout"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:layout_marginLeft="16dp"
- android:background="#d8d8d8" />
- </LinearLayout>
- </LinearLayout>
|