123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- <?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:gravity="center"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="350dp"
- android:layout_height="400dp"
- android:background="#ffffff"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:background="@drawable/cy_logintip" >
- <ImageView
- android:id="@+id/qy_backiv"
- android:layout_width="45dp"
- android:layout_height="45dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_margin="5dp"
- android:background="@drawable/cy_close" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_centerVertical="true"
- android:text="充值中心"
- android:textColor="@color/qyfont_black"
- android:textSize="22sp" />
- </RelativeLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dp"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="账 号 :"
- android:textColor="@color/qyfont_black"
- android:textSize="13sp" />
- <TextView
- android:id="@+id/usernametv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text=""
- android:textColor="@color/qyfont_black"
- android:textSize="13sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dp"
- android:visibility="gone"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="平台币余额:"
- android:textColor="@color/qyfont_black"
- android:textSize="13sp" />
- <TextView
- android:id="@+id/qyflatpaymoney"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="5sp"
- android:text="0"
- android:textColor="@color/qyfont_black"
- android:textSize="13sp" />
- <Button
- android:id="@+id/btptb"
- android:layout_width="40dp"
- android:layout_height="25dp"
- android:background="@drawable/cygreenrect_gray"
- android:gravity="center"
- android:padding="4sp"
- android:text="充值"
- android:textColor="@color/qyfont_white"
- android:textSize="12sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dp"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="订单金额:"
- android:textColor="@color/qyfontgrey_black"
- android:textSize="13sp" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="¥"
- android:textColor="@color/qyfont_orange"
- android:textSize="13sp" />
- <TextView
- android:id="@+id/tvamount"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="5sp"
- android:text="50"
- android:textColor="@color/qyfont_orange"
- android:textSize="13sp" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:layout_margin="10dp"
- android:background="#cabdbd" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="5sp"
- android:text="请选择支付方式"
- android:textColor="@color/qyfont_black"
- android:textSize="13sp" />
- <GridView
- android:id="@+id/cardgrid"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="20dp"
- android:layout_marginRight="20dp"
- android:background="@color/qyfont_white"
- android:columnWidth="50dp"
- android:fadingEdge="none"
- android:horizontalSpacing="15dp"
- android:listSelector="#00000000"
- android:numColumns="2"
- android:stretchMode="columnWidth"
- android:verticalSpacing="15dp" >
- </GridView>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true" >
- <TextView
- android:id="@+id/tvqq"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_marginLeft="5dp"
- android:padding="5sp"
- android:text=""
- android:textColor="@color/qyfontgrey_black"
- android:textSize="13sp" />
- <TextView
- android:id="@+id/tviphone"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_marginRight="5dp"
- android:padding="5sp"
- android:text=""
- android:textColor="@color/qyfontgrey_black"
- android:textSize="13sp" />
- </RelativeLayout>
- </RelativeLayout>
- </LinearLayout>
- </LinearLayout>
|