12345678910111213141516171819202122232425262728293031323334 |
- <?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/cygraynessrect_gray"
- android:gravity="center"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/cy_pya"
- android:id="@+id/payli"
- android:orientation="horizontal" >
- <ImageView
- android:id="@+id/payimage"
- android:layout_width="40dp"
- android:layout_height="40dp"
- android:layout_margin="5dp"
- android:background="@drawable/cy_alipay" />
- <TextView
- android:id="@+id/payname"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:padding="5sp"
- android:text="支付宝"
- android:textColor="@color/qyfont_black"
- android:textSize="15sp" />
- </LinearLayout>
- </LinearLayout>
|