cypay_portrait.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:gravity="center"
  6. android:orientation="vertical" >
  7. <LinearLayout
  8. android:layout_width="350dp"
  9. android:layout_height="400dp"
  10. android:background="#ffffff"
  11. android:orientation="vertical" >
  12. <RelativeLayout
  13. android:layout_width="match_parent"
  14. android:layout_height="50dp"
  15. android:background="@drawable/cy_logintip" >
  16. <ImageView
  17. android:id="@+id/qy_backiv"
  18. android:layout_width="45dp"
  19. android:layout_height="45dp"
  20. android:layout_alignParentRight="true"
  21. android:layout_centerVertical="true"
  22. android:layout_margin="5dp"
  23. android:background="@drawable/cy_close" />
  24. <TextView
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:layout_centerHorizontal="true"
  28. android:layout_centerVertical="true"
  29. android:text="充值中心"
  30. android:textColor="@color/qyfont_black"
  31. android:textSize="22sp" />
  32. </RelativeLayout>
  33. <LinearLayout
  34. android:layout_width="match_parent"
  35. android:layout_height="wrap_content"
  36. android:layout_margin="5dp"
  37. android:orientation="horizontal" >
  38. <TextView
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"
  41. android:text="账 号 :"
  42. android:textColor="@color/qyfont_black"
  43. android:textSize="13sp" />
  44. <TextView
  45. android:id="@+id/usernametv"
  46. android:layout_width="wrap_content"
  47. android:layout_height="wrap_content"
  48. android:text=""
  49. android:textColor="@color/qyfont_black"
  50. android:textSize="13sp" />
  51. </LinearLayout>
  52. <LinearLayout
  53. android:layout_width="match_parent"
  54. android:layout_height="wrap_content"
  55. android:layout_margin="5dp"
  56. android:visibility="gone"
  57. android:orientation="horizontal" >
  58. <TextView
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:text="平台币余额:"
  62. android:textColor="@color/qyfont_black"
  63. android:textSize="13sp" />
  64. <TextView
  65. android:id="@+id/qyflatpaymoney"
  66. android:layout_width="wrap_content"
  67. android:layout_height="wrap_content"
  68. android:padding="5sp"
  69. android:text="0"
  70. android:textColor="@color/qyfont_black"
  71. android:textSize="13sp" />
  72. <Button
  73. android:id="@+id/btptb"
  74. android:layout_width="40dp"
  75. android:layout_height="25dp"
  76. android:background="@drawable/cygreenrect_gray"
  77. android:gravity="center"
  78. android:padding="4sp"
  79. android:text="充值"
  80. android:textColor="@color/qyfont_white"
  81. android:textSize="12sp" />
  82. </LinearLayout>
  83. <LinearLayout
  84. android:layout_width="match_parent"
  85. android:layout_height="wrap_content"
  86. android:layout_margin="5dp"
  87. android:orientation="horizontal" >
  88. <TextView
  89. android:layout_width="wrap_content"
  90. android:layout_height="wrap_content"
  91. android:text="订单金额:"
  92. android:textColor="@color/qyfontgrey_black"
  93. android:textSize="13sp" />
  94. <TextView
  95. android:layout_width="wrap_content"
  96. android:layout_height="wrap_content"
  97. android:text="¥"
  98. android:textColor="@color/qyfont_orange"
  99. android:textSize="13sp" />
  100. <TextView
  101. android:id="@+id/tvamount"
  102. android:layout_width="wrap_content"
  103. android:layout_height="wrap_content"
  104. android:padding="5sp"
  105. android:text="50"
  106. android:textColor="@color/qyfont_orange"
  107. android:textSize="13sp" />
  108. </LinearLayout>
  109. <View
  110. android:layout_width="match_parent"
  111. android:layout_height="1dp"
  112. android:layout_margin="10dp"
  113. android:background="#cabdbd" />
  114. <TextView
  115. android:layout_width="wrap_content"
  116. android:layout_height="wrap_content"
  117. android:padding="5sp"
  118. android:text="请选择支付方式"
  119. android:textColor="@color/qyfont_black"
  120. android:textSize="13sp" />
  121. <GridView
  122. android:id="@+id/cardgrid"
  123. android:layout_width="wrap_content"
  124. android:layout_height="wrap_content"
  125. android:layout_marginLeft="20dp"
  126. android:layout_marginRight="20dp"
  127. android:background="@color/qyfont_white"
  128. android:columnWidth="50dp"
  129. android:fadingEdge="none"
  130. android:horizontalSpacing="15dp"
  131. android:listSelector="#00000000"
  132. android:numColumns="2"
  133. android:stretchMode="columnWidth"
  134. android:verticalSpacing="15dp" >
  135. </GridView>
  136. <RelativeLayout
  137. android:layout_width="match_parent"
  138. android:layout_height="match_parent" >
  139. <RelativeLayout
  140. android:layout_width="match_parent"
  141. android:layout_height="wrap_content"
  142. android:layout_alignParentBottom="true" >
  143. <TextView
  144. android:id="@+id/tvqq"
  145. android:layout_width="wrap_content"
  146. android:layout_height="wrap_content"
  147. android:layout_alignParentLeft="true"
  148. android:layout_marginLeft="5dp"
  149. android:padding="5sp"
  150. android:text=""
  151. android:textColor="@color/qyfontgrey_black"
  152. android:textSize="13sp" />
  153. <TextView
  154. android:id="@+id/tviphone"
  155. android:layout_width="wrap_content"
  156. android:layout_height="wrap_content"
  157. android:layout_alignParentRight="true"
  158. android:layout_marginRight="5dp"
  159. android:padding="5sp"
  160. android:text=""
  161. android:textColor="@color/qyfontgrey_black"
  162. android:textSize="13sp" />
  163. </RelativeLayout>
  164. </RelativeLayout>
  165. </LinearLayout>
  166. </LinearLayout>