cyflatpay.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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="550dp"
  9. android:layout_height="330dp"
  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="match_parent"
  36. android:orientation="horizontal" >
  37. <LinearLayout
  38. android:layout_width="0dp"
  39. android:layout_height="match_parent"
  40. android:layout_weight="2"
  41. android:orientation="vertical" >
  42. <LinearLayout
  43. android:layout_width="match_parent"
  44. android:layout_height="wrap_content"
  45. android:layout_margin="2dp"
  46. android:orientation="horizontal" >
  47. <TextView
  48. android:layout_width="wrap_content"
  49. android:layout_height="wrap_content"
  50. android:layout_marginLeft="5dp"
  51. android:text="账 号:"
  52. android:textColor="@color/qyfont_black"
  53. android:textSize="13sp" />
  54. <TextView
  55. android:id="@+id/usernametv"
  56. android:layout_width="wrap_content"
  57. android:layout_height="wrap_content"
  58. android:padding="2sp"
  59. android:text=""
  60. android:textColor="@color/qyfont_black"
  61. android:textSize="13sp" />
  62. </LinearLayout>
  63. <LinearLayout
  64. android:layout_width="match_parent"
  65. android:layout_height="wrap_content"
  66. android:layout_margin="2dp"
  67. android:orientation="horizontal" >
  68. <TextView
  69. android:layout_width="wrap_content"
  70. android:layout_height="wrap_content"
  71. android:layout_marginLeft="5dp"
  72. android:text="平台币余额:"
  73. android:textColor="@color/qyfont_black"
  74. android:textSize="13sp" />
  75. <TextView
  76. android:id="@+id/qyflatpaymoney"
  77. android:layout_width="wrap_content"
  78. android:layout_height="wrap_content"
  79. android:padding="2sp"
  80. android:text="0"
  81. android:textColor="@color/qyfont_black"
  82. android:textSize="13sp" />
  83. </LinearLayout>
  84. <LinearLayout
  85. android:layout_width="match_parent"
  86. android:layout_height="wrap_content"
  87. android:layout_margin="2dp"
  88. android:orientation="horizontal" >
  89. <TextView
  90. android:layout_width="wrap_content"
  91. android:layout_height="wrap_content"
  92. android:layout_marginLeft="5dp"
  93. android:text="充值金额"
  94. android:textColor="@color/qyfont_black"
  95. android:textSize="13sp" />
  96. <EditText
  97. android:id="@+id/qyetsum"
  98. android:layout_width="40dp"
  99. android:layout_height="wrap_content"
  100. android:layout_alignParentTop="true"
  101. android:layout_centerHorizontal="true"
  102. android:layout_toRightOf="@+id/user_icon"
  103. android:background="@drawable/cyeditlogin"
  104. android:gravity="center"
  105. android:inputType="number"
  106. android:maxLength="5"
  107. android:padding="2sp"
  108. android:singleLine="true"
  109. android:text=""
  110. android:textColor="@color/qyfontgrey_black"
  111. android:textSize="13sp" />
  112. <TextView
  113. android:layout_width="wrap_content"
  114. android:layout_height="wrap_content"
  115. android:text="获得"
  116. android:textColor="@color/qyfont_black"
  117. android:textSize="13sp" />
  118. <TextView
  119. android:id="@+id/tvptamount"
  120. android:layout_width="wrap_content"
  121. android:layout_height="wrap_content"
  122. android:paddingBottom="2dp"
  123. android:paddingTop="2dp"
  124. android:text=""
  125. android:textColor="@color/qyfont_orange"
  126. android:textSize="13sp" />
  127. <TextView
  128. android:layout_width="wrap_content"
  129. android:layout_height="wrap_content"
  130. android:text="平台币"
  131. android:textColor="@color/qyfont_black"
  132. android:textSize="13sp" />
  133. </LinearLayout>
  134. <GridView
  135. android:id="@+id/rewardgrid"
  136. android:layout_width="wrap_content"
  137. android:layout_height="wrap_content"
  138. android:columnWidth="30dp"
  139. android:fadingEdge="none"
  140. android:horizontalSpacing="15dp"
  141. android:listSelector="#00000000"
  142. android:numColumns="3"
  143. android:layout_margin="5dp"
  144. android:stretchMode="columnWidth"
  145. android:verticalSpacing="15dp" >
  146. </GridView>
  147. <TextView
  148. android:id="@+id/qyactivity"
  149. android:layout_width="match_parent"
  150. android:layout_height="fill_parent"
  151. android:layout_margin="10dp"
  152. android:text=" " />
  153. </LinearLayout>
  154. <View
  155. android:layout_width="1dp"
  156. android:layout_height="match_parent"
  157. android:background="#cabdbd" />
  158. <LinearLayout
  159. android:layout_width="0dp"
  160. android:layout_height="match_parent"
  161. android:layout_weight="3"
  162. android:orientation="vertical" >
  163. <RelativeLayout
  164. android:layout_width="match_parent"
  165. android:layout_height="match_parent" >
  166. <LinearLayout
  167. android:layout_width="match_parent"
  168. android:layout_height="wrap_content"
  169. android:orientation="vertical" >
  170. <TextView
  171. android:layout_width="wrap_content"
  172. android:layout_height="wrap_content"
  173. android:padding="5sp"
  174. android:text="请选择支付方式"
  175. android:textColor="@color/qyfont_black"
  176. android:textSize="13sp" />
  177. <GridView
  178. android:id="@+id/cardgrid"
  179. android:layout_width="wrap_content"
  180. android:layout_height="wrap_content"
  181. android:layout_marginLeft="20dp"
  182. android:layout_marginRight="20dp"
  183. android:background="@color/qyfont_white"
  184. android:columnWidth="50dp"
  185. android:fadingEdge="none"
  186. android:horizontalSpacing="15dp"
  187. android:listSelector="#00000000"
  188. android:numColumns="2"
  189. android:stretchMode="columnWidth"
  190. android:verticalSpacing="15dp" >
  191. </GridView>
  192. </LinearLayout>
  193. <LinearLayout
  194. android:layout_width="match_parent"
  195. android:layout_height="wrap_content"
  196. android:layout_alignParentBottom="true"
  197. android:orientation="horizontal"
  198. android:padding="5sp" >
  199. <TextView
  200. android:id="@+id/tvqq"
  201. android:layout_width="wrap_content"
  202. android:layout_height="wrap_content"
  203. android:padding="5sp"
  204. android:text=""
  205. android:textColor="@color/qyfontgrey_black"
  206. android:textSize="12sp" />
  207. <TextView
  208. android:id="@+id/tviphone"
  209. android:layout_width="wrap_content"
  210. android:layout_height="wrap_content"
  211. android:padding="5sp"
  212. android:text=""
  213. android:textColor="@color/qyfontgrey_black"
  214. android:textSize="12sp" />
  215. </LinearLayout>
  216. </RelativeLayout>
  217. </LinearLayout>
  218. </LinearLayout>
  219. </LinearLayout>
  220. </LinearLayout>