1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- >
- <RelativeLayout
- android:id="@+id/tysdkn_pay_type_rl"
- android:layout_width="110dp"
- android:layout_height="35dp"
- android:layout_margin="5dp"
- >
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:orientation="horizontal">
- <ImageView
- android:id="@+id/tysdkn_pay_type_img"
- android:layout_width="22dp"
- android:layout_height="22dp"
- android:layout_centerVertical="true"
- />
- <TextView
- android:id="@+id/tysdkn_pay_type_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="5dp"
- android:text="支付宝支付"
- android:textColor="#ffffff"
- android:textSize="11sp" />
- </LinearLayout>
- <ImageView
- android:id="@+id/tysdkn_pay_type_sel_img"
- android:layout_width="12dp"
- android:layout_height="12dp"
- android:visibility="gone"
- android:layout_alignParentBottom="true"
- android:layout_alignParentRight="true"
- android:background="@drawable/tysdkn_rechargetype_select" />
- </RelativeLayout>
- </LinearLayout>
|