tysdkn_game_recharge_content.xml 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <RelativeLayout
  7. android:id="@+id/tysdkn_layout_toolbar_id"
  8. android:layout_width="match_parent"
  9. android:layout_height="48dp"
  10. android:background="#FFFFFF">
  11. <ImageView
  12. android:id="@+id/tysdkn_game_pay_back"
  13. android:layout_width="48dp"
  14. android:layout_height="48dp"
  15. android:layout_centerVertical="true"
  16. android:padding="15dp"
  17. android:src="@drawable/tysdkn_recahrge_back_blue_left" />
  18. <TextView
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_centerInParent="true"
  22. android:gravity="center"
  23. android:text="游戏充值"
  24. android:textColor="#30B8FF"
  25. android:textSize="16sp" />
  26. <TextView
  27. android:id="@+id/tysdkn_tv_cz_history"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:layout_alignParentRight="true"
  31. android:layout_centerVertical="true"
  32. android:layout_marginRight="11dp"
  33. android:gravity="center"
  34. android:text="消费记录"
  35. android:visibility="gone"
  36. android:textColor="#30B8FF"
  37. android:textSize="12sp" />
  38. </RelativeLayout>
  39. <ProgressBar
  40. android:id="@+id/tysdkn_progressbar"
  41. style="@android:style/Widget.ProgressBar"
  42. android:layout_width="25dp"
  43. android:layout_height="25dp"
  44. android:layout_centerHorizontal="true"
  45. android:layout_marginTop="80dp"
  46. android:indeterminateDrawable="@drawable/tysdkn_progressbar_rotate"
  47. android:visibility="gone"
  48. tools:visibility="visible" />
  49. <ScrollView
  50. android:layout_width="match_parent"
  51. android:layout_height="match_parent"
  52. android:background="#30B8FF"
  53. android:layout_below="@+id/tysdkn_layout_toolbar_id"
  54. android:scrollbars="none"
  55. >
  56. <RelativeLayout
  57. android:id="@+id/tysdkn_rl_pay_page"
  58. android:layout_width="match_parent"
  59. android:layout_height="match_parent"
  60. >
  61. <ImageView
  62. android:id="@+id/tysdkn_img_game_pay_toothshape"
  63. android:layout_width="match_parent"
  64. android:layout_height="6dp"
  65. android:layout_marginLeft="12dp"
  66. android:layout_marginTop="14dp"
  67. android:layout_marginRight="12dp"
  68. android:background="@drawable/game_pay_toothshape" />
  69. <RelativeLayout
  70. android:layout_width="match_parent"
  71. android:layout_height="wrap_content"
  72. android:layout_below="@id/tysdkn_img_game_pay_toothshape"
  73. android:layout_marginLeft="12dp"
  74. android:layout_marginRight="12dp"
  75. android:background="@drawable/tysdkn_game_pay_bg">
  76. <RelativeLayout
  77. android:id="@+id/tysdkn_layout_game_pay_head"
  78. android:layout_width="match_parent"
  79. android:layout_height="66dp"
  80. android:background="#F7F5F6">
  81. <TextView
  82. android:id="@+id/tysdkn_game_pay_price"
  83. android:layout_width="wrap_content"
  84. android:layout_height="wrap_content"
  85. android:layout_marginLeft="9dp"
  86. android:layout_marginTop="9dp"
  87. android:text="订单金额: ¥10.00"
  88. android:textColor="#333333"
  89. android:textSize="11sp" />
  90. <TextView
  91. android:id="@+id/tysdkn_game_pay_pay"
  92. android:layout_width="wrap_content"
  93. android:layout_height="wrap_content"
  94. android:layout_alignParentBottom="true"
  95. android:layout_marginLeft="59dp"
  96. android:layout_marginBottom="9dp"
  97. android:text="1000.00元"
  98. android:textColor="#F4340E" />
  99. <TextView
  100. android:layout_width="wrap_content"
  101. android:layout_height="wrap_content"
  102. android:layout_alignParentBottom="true"
  103. android:layout_marginLeft="9dp"
  104. android:layout_marginBottom="11dp"
  105. android:text="还需支付: "
  106. android:textColor="#333333"
  107. android:textSize="11sp" />
  108. <RelativeLayout
  109. android:id="@+id/tysdkn_layout_game_pay_zk"
  110. android:layout_width="50dp"
  111. android:layout_height="24dp"
  112. android:layout_alignParentRight="true"
  113. android:layout_centerInParent="true"
  114. android:background="@drawable/tysdkn_discount_layout"
  115. android:visibility="gone"
  116. android:gravity="center">
  117. <TextView
  118. android:id="@+id/tysdkn_game_pay_zk"
  119. android:layout_width="wrap_content"
  120. android:layout_height="wrap_content"
  121. android:text="4.5折"
  122. android:textColor="#ffffffff"
  123. android:textSize="13sp"
  124. />
  125. </RelativeLayout>
  126. <include layout="@layout/tysdkn_water_mark_layout" />
  127. </RelativeLayout>
  128. <RelativeLayout
  129. android:id="@+id/tysdkn_tv_game_pay_change_discount"
  130. android:layout_width="match_parent"
  131. android:layout_height="37dp"
  132. android:layout_below="@id/tysdkn_layout_game_pay_head"
  133. android:layout_marginTop="7dp"
  134. android:background="#F7F5F6">
  135. <ImageView
  136. android:id="@+id/tysdkn_recharge_icon_discount"
  137. android:layout_width="23dp"
  138. android:layout_height="15dp"
  139. android:layout_centerVertical="true"
  140. android:layout_marginLeft="14dp"
  141. android:background="@drawable/tysdkn_recharge_icon_discount" />
  142. <TextView
  143. android:id="@+id/tysdkn_recharge_tv_cotent"
  144. android:layout_width="100dp"
  145. android:layout_height="wrap_content"
  146. android:layout_centerVertical="true"
  147. android:layout_gravity="center_vertical"
  148. android:layout_marginLeft="6dp"
  149. android:layout_marginRight="40dp"
  150. android:maxEms="9"
  151. android:layout_toRightOf="@id/tysdkn_recharge_icon_discount"
  152. android:singleLine="true"
  153. android:text="有 0 张优惠券可用"
  154. android:textColor="#333333"
  155. android:textSize="11sp" />
  156. <TextView
  157. android:id="@+id/tysdkn_recharge_tv_discount"
  158. android:layout_width="wrap_content"
  159. android:layout_height="wrap_content"
  160. android:layout_centerVertical="true"
  161. android:layout_gravity="center_vertical"
  162. android:layout_marginRight="6dp"
  163. android:layout_toLeftOf="@+id/tysdkn_img_gray_right_back"
  164. android:singleLine="true"
  165. android:textColor="#F4340E"
  166. android:text=""
  167. android:textSize="11sp" />
  168. <ImageView
  169. android:id="@+id/tysdkn_img_gray_right_back"
  170. android:layout_width="8dp"
  171. android:layout_height="8dp"
  172. android:layout_alignParentRight="true"
  173. android:layout_centerVertical="true"
  174. android:layout_marginRight="14dp"
  175. android:src="@drawable/tysdkn_gray_right_back" />
  176. </RelativeLayout>
  177. <RelativeLayout
  178. android:layout_width="match_parent"
  179. android:layout_height="wrap_content"
  180. android:layout_below="@id/tysdkn_tv_game_pay_change_discount"
  181. android:layout_marginTop="13dp">
  182. <RelativeLayout
  183. android:id="@+id/tysdkn_tv_select_pay"
  184. android:layout_width="match_parent"
  185. android:layout_height="wrap_content">
  186. <TextView
  187. android:layout_width="wrap_content"
  188. android:layout_height="wrap_content"
  189. android:layout_marginLeft="15dp"
  190. android:text="支付方式"
  191. android:textColor="#ff333333"
  192. android:textSize="12sp" />
  193. <TextView
  194. android:id="@+id/tysdkn_my_yubi"
  195. android:layout_width="wrap_content"
  196. android:layout_height="wrap_content"
  197. android:layout_toLeftOf="@+id/tysdkn_game_pay_yb_count_land"
  198. android:text="我的宇币:"
  199. android:textColor="#ff999999"
  200. android:textSize="12sp" />
  201. <TextView
  202. android:id="@+id/tysdkn_game_pay_yb_count_land"
  203. android:layout_width="wrap_content"
  204. android:layout_height="wrap_content"
  205. android:layout_alignParentRight="true"
  206. android:layout_marginRight="15dp"
  207. android:text="0个"
  208. android:textColor="#F4340E"
  209. android:textSize="12sp" />
  210. <ImageView
  211. android:id="@+id/tysdkn_game_pay_refresh_iv"
  212. android:layout_width="wrap_content"
  213. android:layout_height="match_parent"
  214. android:layout_marginRight="5dp"
  215. android:layout_centerInParent="true"
  216. android:layout_toLeftOf="@+id/tysdkn_my_yubi"
  217. android:background="@drawable/tysdkn_refresh"
  218. android:text="刷新"
  219. />
  220. </RelativeLayout>
  221. <HorizontalScrollView
  222. android:id="@+id/tysdkn_scrollview_layout"
  223. android:layout_width="match_parent"
  224. android:layout_height="wrap_content"
  225. android:layout_below="@id/tysdkn_tv_select_pay"
  226. android:layout_marginTop="10dp"
  227. android:fillViewport="true"
  228. android:scrollbars="none">
  229. <LinearLayout
  230. android:id="@+id/tysdkn_rg_pay_list_layout"
  231. android:layout_width="match_parent"
  232. android:layout_height="wrap_content"
  233. android:orientation="horizontal">
  234. </LinearLayout>
  235. </HorizontalScrollView>
  236. <Button
  237. android:id="@+id/tysdkn_game_pay_no_land_topay"
  238. android:layout_width="match_parent"
  239. android:layout_height="35dp"
  240. android:layout_below="@id/tysdkn_scrollview_layout"
  241. android:layout_marginLeft="12dp"
  242. android:layout_marginTop="12dp"
  243. android:layout_marginRight="14dp"
  244. android:layout_marginBottom="14dp"
  245. android:background="@drawable/tysdkn_recharge_item_select"
  246. android:text="立即充值"
  247. android:textColor="#FFFFFF"
  248. android:textSize="15sp" />
  249. <LinearLayout
  250. android:id="@+id/tysdkn_ll_game_pay_jf"
  251. android:layout_width="wrap_content"
  252. android:layout_height="wrap_content"
  253. android:visibility="gone"
  254. tools:visibility="visible"
  255. android:layout_marginLeft="12dp"
  256. android:layout_marginBottom="20dp"
  257. android:gravity="center_vertical"
  258. android:layout_below="@id/tysdkn_game_pay_no_land_topay"
  259. android:orientation="horizontal">
  260. <TextView
  261. android:id="@+id/tysdkn_game_pay_jf"
  262. android:layout_width="wrap_content"
  263. android:layout_height="wrap_content"
  264. android:text="可获积分: 0个"
  265. android:textColor="#333333"
  266. android:textSize="11sp" />
  267. <ImageView
  268. android:id="@+id/tysdkn_game_pay_jf_dialog"
  269. android:layout_width="12dp"
  270. android:layout_height="12dp"
  271. android:layout_marginLeft="5dp"
  272. android:src="@drawable/tysdkn_wenhao" />
  273. </LinearLayout>
  274. </RelativeLayout>
  275. </RelativeLayout>
  276. </RelativeLayout>
  277. </ScrollView>
  278. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  279. android:layout_width="match_parent"
  280. android:layout_height="match_parent"
  281. android:visibility="gone"
  282. xmlns:tools="http://schemas.android.com/tools">
  283. <!--<ScrollView-->
  284. <!--android:layout_width="wrap_content"-->
  285. <!--android:layout_height="wrap_content"-->
  286. <!--&gt;-->
  287. <RelativeLayout
  288. android:layout_width="match_parent"
  289. android:layout_height="match_parent">
  290. <RelativeLayout
  291. android:background="#ff1f2228"
  292. android:layout_width="match_parent"
  293. android:layout_height="48dp">
  294. <ImageView
  295. android:layout_width="48dp"
  296. android:layout_height="48dp"
  297. android:layout_centerVertical="true"
  298. android:padding="15dp"
  299. android:src="@drawable/tysdkn_recahrge_back_left" />
  300. <TextView
  301. android:layout_width="wrap_content"
  302. android:layout_height="wrap_content"
  303. android:layout_centerInParent="true"
  304. android:gravity="center"
  305. android:text="游戏充值"
  306. android:textColor="#FFFFFF"
  307. android:textSize="16sp" />
  308. <TextView
  309. android:layout_width="wrap_content"
  310. android:layout_height="wrap_content"
  311. android:layout_alignParentRight="true"
  312. android:layout_marginRight="11dp"
  313. android:layout_centerVertical="true"
  314. android:gravity="center"
  315. android:text="消费记录"
  316. android:textColor="#FFFFFF"
  317. android:textSize="12sp" />
  318. </RelativeLayout>
  319. <ProgressBar
  320. style="@android:style/Widget.ProgressBar"
  321. android:layout_width="25dp"
  322. android:layout_height="25dp"
  323. android:visibility="gone"
  324. tools:visibility="visible"
  325. android:layout_marginTop="80dp"
  326. android:layout_centerHorizontal="true"
  327. android:indeterminateDrawable="@drawable/tysdkn_progressbar_rotate" />
  328. <RelativeLayout
  329. android:layout_width="match_parent"
  330. android:layout_height="match_parent">
  331. <RelativeLayout
  332. android:layout_width="match_parent"
  333. android:layout_height="60dp"
  334. android:layout_marginTop="45dp"
  335. android:background="#262D3B">
  336. <TextView
  337. android:layout_width="wrap_content"
  338. android:layout_height="wrap_content"
  339. android:layout_marginLeft="9dp"
  340. android:layout_marginTop="9dp"
  341. android:text="订单金额: ¥10.00"
  342. android:textColor="#ffffff"
  343. android:textSize="11sp" />
  344. <LinearLayout
  345. android:layout_width="wrap_content"
  346. android:layout_height="wrap_content"
  347. android:layout_alignParentRight="true"
  348. android:layout_marginRight="12dp"
  349. android:orientation="vertical">
  350. <TextView
  351. android:visibility="gone"
  352. android:layout_width="wrap_content"
  353. android:layout_height="wrap_content"
  354. android:layout_marginTop="9dp"
  355. android:text="当前折扣:10折"
  356. android:textColor="#ffffff"
  357. android:textSize="11sp" />
  358. <!--<LinearLayout-->
  359. <!--android:id="@+id/tysdkn_ll_game_pay_jf"-->
  360. <!--android:layout_width="wrap_content"-->
  361. <!--android:layout_height="wrap_content"-->
  362. <!--android:visibility="gone"-->
  363. <!--tools:visibility="visible"-->
  364. <!--android:layout_marginTop="9dp"-->
  365. <!--android:gravity="center_vertical"-->
  366. <!--android:orientation="horizontal">-->
  367. <!--<TextView-->
  368. <!--android:id="@+id/tysdkn_game_pay_jf"-->
  369. <!--android:layout_width="wrap_content"-->
  370. <!--android:layout_height="wrap_content"-->
  371. <!--android:text="可获积分: 0个"-->
  372. <!--android:textColor="#ffffff"-->
  373. <!--android:textSize="11sp" />-->
  374. <!--<ImageView-->
  375. <!--android:id="@+id/tysdkn_game_pay_jf_dialog"-->
  376. <!--android:layout_width="12dp"-->
  377. <!--android:layout_height="12dp"-->
  378. <!--android:src="@drawable/tysdkn_wenhao" />-->
  379. <!--</LinearLayout>-->
  380. </LinearLayout>
  381. <TextView
  382. android:layout_width="wrap_content"
  383. android:layout_height="wrap_content"
  384. android:layout_alignParentBottom="true"
  385. android:layout_marginBottom="9dp"
  386. android:layout_marginLeft="59dp"
  387. android:text="1000.00元"
  388. android:textColor="#ffffff" />
  389. <TextView
  390. android:layout_width="wrap_content"
  391. android:layout_height="wrap_content"
  392. android:layout_alignParentBottom="true"
  393. android:layout_marginBottom="11dp"
  394. android:layout_marginLeft="9dp"
  395. android:text="还需支付: "
  396. android:textColor="#ffffff"
  397. android:textSize="11sp" />
  398. </RelativeLayout>
  399. <TextView
  400. android:layout_width="wrap_content"
  401. android:layout_height="wrap_content"
  402. android:layout_marginLeft="11dp"
  403. android:layout_marginTop="115dp"
  404. android:text="选择支付方式"
  405. android:textColor="#ff999999"
  406. android:textSize="11sp" />
  407. <TextView
  408. android:layout_width="wrap_content"
  409. android:layout_height="wrap_content"
  410. android:layout_alignParentRight="true"
  411. android:layout_marginRight="11dp"
  412. android:layout_marginTop="115dp"
  413. android:text="我的宇币: 0个"
  414. android:textColor="#ff999999"
  415. android:textSize="11sp" />
  416. <!--<LinearLayout-->
  417. <!--android:layout_width="match_parent"-->
  418. <!--android:layout_height="wrap_content"-->
  419. <!--android:orientation="horizontal">-->
  420. <!--<RelativeLayout-->
  421. <!--android:layout_width="0dp"-->
  422. <!--android:layout_height="wrap_content"-->
  423. <!--android:layout_marginLeft="10dp"-->
  424. <!--android:layout_marginRight="10dp"-->
  425. <!--android:layout_weight="1">-->
  426. <!--<RelativeLayout-->
  427. <!--android:id="@+id/tysdkn_game_pay_no_land_zfb"-->
  428. <!--android:layout_width="match_parent"-->
  429. <!--android:layout_height="39dp"-->
  430. <!--android:layout_centerHorizontal="true"-->
  431. <!--android:layout_marginTop="137dp"-->
  432. <!--android:background="@drawable/tysdkn_recharge_type_select"-->
  433. <!--android:clickable="true">-->
  434. <!--<LinearLayout-->
  435. <!--android:layout_width="wrap_content"-->
  436. <!--android:layout_height="wrap_content"-->
  437. <!--android:layout_centerInParent="true"-->
  438. <!--android:orientation="horizontal">-->
  439. <!--<ImageView-->
  440. <!--android:layout_width="22dp"-->
  441. <!--android:layout_height="22dp"-->
  442. <!--android:layout_centerVertical="true"-->
  443. <!--android:background="@drawable/tysdkn_recharge_zhifubao" />-->
  444. <!--<TextView-->
  445. <!--android:layout_width="wrap_content"-->
  446. <!--android:layout_height="wrap_content"-->
  447. <!--android:layout_gravity="center_vertical"-->
  448. <!--android:layout_marginLeft="5dp"-->
  449. <!--android:text="支付宝支付"-->
  450. <!--android:textColor="#ffffff"-->
  451. <!--android:textSize="11sp" />-->
  452. <!--</LinearLayout>-->
  453. <!--<ImageView-->
  454. <!--android:id="@+id/tysdkn_rl_root_img_zhifubao"-->
  455. <!--android:layout_width="12dp"-->
  456. <!--android:layout_height="12dp"-->
  457. <!--android:layout_alignParentBottom="true"-->
  458. <!--android:layout_alignParentRight="true"-->
  459. <!--android:background="@drawable/tysdkn_rechargetype_select" />-->
  460. <!--</RelativeLayout>-->
  461. <!--</RelativeLayout>-->
  462. <!--<RelativeLayout-->
  463. <!--android:layout_width="0dp"-->
  464. <!--android:layout_height="wrap_content"-->
  465. <!--android:layout_marginRight="10dp"-->
  466. <!--android:layout_weight="1">-->
  467. <!--<RelativeLayout-->
  468. <!--android:id="@+id/tysdkn_game_pay_no_land_wx"-->
  469. <!--android:layout_width="match_parent"-->
  470. <!--android:layout_height="39dp"-->
  471. <!--android:layout_centerHorizontal="true"-->
  472. <!--android:layout_marginTop="137dp"-->
  473. <!--android:background="@drawable/tysdkn_recharge_type_select"-->
  474. <!--android:clickable="true">-->
  475. <!--<LinearLayout-->
  476. <!--android:layout_width="wrap_content"-->
  477. <!--android:layout_height="wrap_content"-->
  478. <!--android:layout_centerInParent="true"-->
  479. <!--android:orientation="horizontal">-->
  480. <!--<ImageView-->
  481. <!--android:layout_width="22dp"-->
  482. <!--android:layout_height="22dp"-->
  483. <!--android:layout_centerVertical="true"-->
  484. <!--android:background="@drawable/tysdkn_recharge_wechat" />-->
  485. <!--<TextView-->
  486. <!--android:layout_width="wrap_content"-->
  487. <!--android:layout_height="wrap_content"-->
  488. <!--android:layout_centerVertical="true"-->
  489. <!--android:layout_gravity="center_vertical"-->
  490. <!--android:layout_marginLeft="5dp"-->
  491. <!--android:text="微信支付"-->
  492. <!--android:textColor="#ffffff"-->
  493. <!--android:textSize="11sp" />-->
  494. <!--</LinearLayout>-->
  495. <!--<ImageView-->
  496. <!--android:id="@+id/tysdkn_rl_root_img_wechat"-->
  497. <!--android:layout_width="12dp"-->
  498. <!--android:layout_height="12dp"-->
  499. <!--android:layout_alignParentBottom="true"-->
  500. <!--android:layout_alignParentRight="true"-->
  501. <!--android:background="@drawable/tysdkn_rechargetype_select" />-->
  502. <!--</RelativeLayout>-->
  503. <!--</RelativeLayout>-->
  504. <!--</LinearLayout>-->
  505. <!--<LinearLayout-->
  506. <!--android:layout_width="match_parent"-->
  507. <!--android:layout_height="wrap_content"-->
  508. <!--android:orientation="horizontal">-->
  509. <!--<RelativeLayout-->
  510. <!--android:layout_width="0dp"-->
  511. <!--android:layout_height="wrap_content"-->
  512. <!--android:layout_marginLeft="10dp"-->
  513. <!--android:layout_marginRight="10dp"-->
  514. <!--android:layout_weight="1">-->
  515. <!--<RelativeLayout-->
  516. <!--android:id="@+id/tysdkn_game_pay_no_land_yb"-->
  517. <!--android:layout_width="match_parent"-->
  518. <!--android:layout_height="39dp"-->
  519. <!--android:layout_centerHorizontal="true"-->
  520. <!--android:layout_marginTop="186dp"-->
  521. <!--android:background="@drawable/tysdkn_recharge_type_select"-->
  522. <!--android:clickable="true">-->
  523. <!--<LinearLayout-->
  524. <!--android:layout_width="wrap_content"-->
  525. <!--android:layout_height="wrap_content"-->
  526. <!--android:layout_centerInParent="true"-->
  527. <!--android:orientation="horizontal">-->
  528. <!--<ImageView-->
  529. <!--android:layout_width="22dp"-->
  530. <!--android:layout_height="22dp"-->
  531. <!--android:layout_centerVertical="true"-->
  532. <!--android:background="@drawable/tysdkn_recharge_yubi" />-->
  533. <!--<TextView-->
  534. <!--android:layout_width="wrap_content"-->
  535. <!--android:layout_height="wrap_content"-->
  536. <!--android:layout_centerVertical="true"-->
  537. <!--android:layout_gravity="center_vertical"-->
  538. <!--android:layout_marginLeft="5dp"-->
  539. <!--android:text="宇币支付"-->
  540. <!--android:textColor="#ffffff"-->
  541. <!--android:textSize="11sp" />-->
  542. <!--</LinearLayout>-->
  543. <!--<ImageView-->
  544. <!--android:id="@+id/tysdkn_rl_root_img_yubi"-->
  545. <!--android:layout_width="12dp"-->
  546. <!--android:layout_height="12dp"-->
  547. <!--android:layout_alignParentBottom="true"-->
  548. <!--android:layout_alignParentRight="true"-->
  549. <!--android:background="@drawable/tysdkn_rechargetype_select" />-->
  550. <!--</RelativeLayout>-->
  551. <!--</RelativeLayout>-->
  552. <!--<RelativeLayout-->
  553. <!--android:layout_width="0dp"-->
  554. <!--android:layout_height="wrap_content"-->
  555. <!--android:layout_marginRight="10dp"-->
  556. <!--android:layout_weight="1"-->
  557. <!--android:visibility="invisible">-->
  558. <!--<RelativeLayout-->
  559. <!--android:layout_width="113dp"-->
  560. <!--android:layout_height="39dp"-->
  561. <!--android:layout_marginLeft="11dp"-->
  562. <!--android:layout_marginTop="186dp"-->
  563. <!--android:background="@drawable/tysdkn_recharge_type_select"-->
  564. <!--android:clickable="true">-->
  565. <!--<ImageView-->
  566. <!--android:layout_width="22dp"-->
  567. <!--android:layout_height="22dp"-->
  568. <!--android:layout_centerVertical="true"-->
  569. <!--android:layout_marginLeft="12dp"-->
  570. <!--android:background="@drawable/tysdkn_recharge_yubi" />-->
  571. <!--<TextView-->
  572. <!--android:layout_width="wrap_content"-->
  573. <!--android:layout_height="wrap_content"-->
  574. <!--android:layout_centerVertical="true"-->
  575. <!--android:layout_marginLeft="45dp"-->
  576. <!--android:text="宇币支付"-->
  577. <!--android:textColor="#ffffff"-->
  578. <!--android:textSize="11sp" />-->
  579. <!--<ImageView-->
  580. <!--android:layout_width="12dp"-->
  581. <!--android:layout_height="12dp"-->
  582. <!--android:layout_alignParentBottom="true"-->
  583. <!--android:layout_alignParentRight="true"-->
  584. <!--android:background="@drawable/tysdkn_rechargetype_select" />-->
  585. <!--</RelativeLayout>-->
  586. <!--</RelativeLayout>-->
  587. <!--</LinearLayout>-->
  588. <LinearLayout
  589. android:layout_width="match_parent"
  590. android:layout_height="220dp"
  591. android:orientation="vertical">
  592. <GridView
  593. android:layout_marginTop="137dp"
  594. android:id="@+id/tysdkn_pay_gridview"
  595. android:layout_width="wrap_content"
  596. android:numColumns="2"
  597. android:layout_height="match_parent"
  598. android:listSelector="#00000000"
  599. >
  600. </GridView>
  601. </LinearLayout>
  602. <LinearLayout
  603. android:visibility="gone"
  604. android:layout_width="wrap_content"
  605. android:layout_height="wrap_content"
  606. android:layout_marginTop="241dp"
  607. android:gravity="center_vertical"
  608. android:orientation="horizontal">
  609. <!--style="@style/stysdkn_recharge_cb"-->
  610. <CheckBox
  611. android:id="@+id/tysdkn_cb_choose_coupon"
  612. android:layout_width="13dp"
  613. android:layout_height="13dp"
  614. android:layout_marginLeft="11dp"
  615. android:checked="true"
  616. android:clickable="true" />
  617. <TextView
  618. android:id="@+id/tysdkn_tv_use_coupon"
  619. android:layout_width="wrap_content"
  620. android:layout_height="wrap_content"
  621. android:layout_marginLeft="10dp"
  622. android:text="请选择优惠券"
  623. android:textColor="#ffffff"
  624. android:textSize="11sp" />
  625. <TextView
  626. android:layout_width="wrap_content"
  627. android:layout_height="wrap_content"
  628. android:layout_marginLeft="10dp"
  629. android:clickable="true"
  630. android:text="更改"
  631. android:textColor="#30B8FF"
  632. android:textSize="11sp" />
  633. </LinearLayout>
  634. <RelativeLayout
  635. android:layout_width="wrap_content"
  636. android:layout_height="wrap_content"
  637. android:layout_marginLeft="10dp"
  638. android:layout_marginRight="10dp"
  639. android:layout_marginTop="235dp"
  640. >
  641. <RelativeLayout
  642. android:layout_width="match_parent"
  643. android:layout_height="35dp"
  644. android:layout_centerHorizontal="true"
  645. android:background="@drawable/tysdkn_recharge_type_select"
  646. android:clickable="true">
  647. <LinearLayout
  648. android:layout_width="wrap_content"
  649. android:layout_height="wrap_content"
  650. android:layout_centerVertical="true"
  651. android:layout_marginLeft="7dp"
  652. android:orientation="horizontal">
  653. <ImageView
  654. android:layout_width="23dp"
  655. android:layout_height="15dp"
  656. android:layout_centerVertical="true"
  657. android:background="@drawable/tysdkn_recharge_icon_discount" />
  658. <TextView
  659. android:layout_width="wrap_content"
  660. android:layout_height="wrap_content"
  661. android:layout_centerVertical="true"
  662. android:layout_gravity="center_vertical"
  663. android:singleLine="true"
  664. android:layout_marginLeft="6dp"
  665. android:layout_marginRight="40dp"
  666. android:text="有 0 张优惠券可用"
  667. android:textColor="#ffffff"
  668. android:textSize="11sp" />
  669. </LinearLayout>
  670. <ImageView
  671. android:layout_width="5dp"
  672. android:layout_height="9dp"
  673. android:layout_alignParentRight="true"
  674. android:layout_marginRight="10dp"
  675. android:layout_centerVertical="true"
  676. android:background="@drawable/tysdkn_xs_login_right" />
  677. <TextView
  678. android:layout_width="wrap_content"
  679. android:layout_height="wrap_content"
  680. android:layout_centerVertical="true"
  681. android:textSize="11sp"
  682. android:textColor="#F4340E"
  683. android:text=""
  684. android:layout_marginRight="25dp"
  685. android:layout_alignParentRight="true"
  686. />
  687. </RelativeLayout>
  688. </RelativeLayout>
  689. <TextView
  690. android:id="@+id/tysdkn_tv_cz_integral"
  691. android:layout_width="wrap_content"
  692. android:layout_height="wrap_content"
  693. android:layout_marginLeft="13dp"
  694. android:layout_marginTop="260dp"
  695. android:text="使用券可额外获得300积分"
  696. android:textColor="#999999"
  697. android:textSize="9sp"
  698. android:visibility="gone" />
  699. <Button
  700. android:layout_width="match_parent"
  701. android:layout_height="35dp"
  702. android:layout_marginLeft="12dp"
  703. android:layout_marginRight="14dp"
  704. android:layout_marginTop="282dp"
  705. android:background="@drawable/tysdkn_recharge_item_select"
  706. android:text="宇币支付10.0元"
  707. android:textColor="#FFFFFF"
  708. android:textSize="15sp" />
  709. <TextView
  710. android:id="@+id/tysdkn_game_pay_vip"
  711. android:layout_width="wrap_content"
  712. android:layout_height="wrap_content"
  713. android:layout_marginLeft="12dp"
  714. android:visibility="gone"
  715. android:layout_marginTop="327dp"
  716. android:text="可获VIP经验: 10点"
  717. android:textColor="#999999"
  718. android:textSize="11sp" />
  719. <ImageView
  720. android:id="@+id/tysdkn_game_pay_vip_dialog"
  721. android:layout_width="13dp"
  722. android:layout_height="13dp"
  723. android:layout_marginLeft="111dp"
  724. android:visibility="gone"
  725. android:layout_marginTop="329dp"
  726. android:src="@drawable/tysdkn_wenhao" />
  727. </RelativeLayout>
  728. </RelativeLayout>
  729. <!--</ScrollView>-->
  730. </RelativeLayout>
  731. </RelativeLayout>