hfb_billingcode.xml 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:background="#FFFFFF"
  6. android:orientation="vertical" >
  7. <include layout="@layout/hfb_title" />
  8. <ScrollView
  9. android:layout_width="fill_parent"
  10. android:layout_height="fill_parent"
  11. android:fillViewport="true" >
  12. <LinearLayout
  13. android:layout_width="fill_parent"
  14. android:layout_height="wrap_content"
  15. android:orientation="vertical" >
  16. <TextView
  17. android:id="@+id/tv_title"
  18. style="@style/hfb_app_title_style"
  19. android:layout_gravity="center_horizontal"
  20. android:text="订单支付" />
  21. <LinearLayout
  22. android:layout_width="fill_parent"
  23. android:layout_height="wrap_content"
  24. android:background="@drawable/hfb_info_bg"
  25. android:orientation="vertical"
  26. android:paddingLeft="15dp"
  27. android:paddingRight="5dp" >
  28. <LinearLayout
  29. android:layout_width="fill_parent"
  30. android:layout_height="wrap_content"
  31. android:layout_marginBottom="10dp"
  32. android:layout_marginTop="10dp"
  33. android:orientation="horizontal" >
  34. <TextView
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:text="商品名称:"
  38. android:textColor="#333333"
  39. android:textSize="16sp" />
  40. <TextView
  41. android:id="@+id/tv_goodsName"
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:text="电影票"
  45. android:textColor="#333333"
  46. android:textSize="16sp" />
  47. </LinearLayout>
  48. <LinearLayout
  49. android:layout_width="fill_parent"
  50. android:layout_height="wrap_content"
  51. android:layout_marginBottom="10dp"
  52. android:layout_marginTop="10dp"
  53. android:orientation="horizontal" >
  54. <TextView
  55. android:layout_width="wrap_content"
  56. android:layout_height="wrap_content"
  57. android:text="订单价格:"
  58. android:textColor="#333333"
  59. android:textSize="16sp" />
  60. <TextView
  61. android:id="@+id/tv_amount"
  62. android:layout_width="wrap_content"
  63. android:layout_height="wrap_content"
  64. android:text="1元(不含通信费)"
  65. android:textColor="#333333"
  66. android:textSize="16sp" />
  67. </LinearLayout>
  68. <LinearLayout
  69. android:layout_width="fill_parent"
  70. android:layout_height="wrap_content"
  71. android:layout_marginBottom="10dp"
  72. android:layout_marginTop="10dp"
  73. android:orientation="horizontal" >
  74. <TextView
  75. android:layout_width="wrap_content"
  76. android:layout_height="wrap_content"
  77. android:text="客服电话:"
  78. android:textColor="#333333"
  79. android:textSize="16sp" />
  80. <TextView
  81. android:id="@+id/tv_cusphone"
  82. android:layout_width="wrap_content"
  83. android:layout_height="wrap_content"
  84. android:text="4006125880"
  85. android:textColor="#333333"
  86. android:textSize="16sp" />
  87. </LinearLayout>
  88. <LinearLayout
  89. android:id="@+id/ll_phone"
  90. android:layout_width="fill_parent"
  91. android:layout_height="wrap_content"
  92. android:layout_marginBottom="10dp"
  93. android:layout_marginTop="10dp"
  94. android:orientation="horizontal" >
  95. <TextView
  96. android:layout_width="wrap_content"
  97. android:layout_height="wrap_content"
  98. android:text="支付手机:"
  99. android:textColor="#333333"
  100. android:textSize="16sp" />
  101. <EditText
  102. android:id="@+id/et_phone"
  103. android:layout_width="fill_parent"
  104. android:layout_height="wrap_content"
  105. android:layout_marginRight="15dp"
  106. android:text=""
  107. android:singleLine="true"
  108. android:inputType="phone"
  109. android:textColor="#333333"
  110. android:textSize="16sp" />
  111. </LinearLayout>
  112. <LinearLayout
  113. android:id="@+id/ll_code"
  114. android:layout_width="fill_parent"
  115. android:layout_height="wrap_content"
  116. android:layout_marginBottom="10dp"
  117. android:layout_marginTop="10dp"
  118. android:orientation="horizontal"
  119. android:visibility="visible" >
  120. <TextView
  121. android:layout_width="wrap_content"
  122. android:layout_height="wrap_content"
  123. android:text=" 验证码:"
  124. android:textColor="#333333"
  125. android:textSize="16sp" />
  126. <EditText
  127. android:id="@+id/et_code"
  128. android:layout_width="90dp"
  129. android:layout_height="wrap_content"
  130. android:singleLine="true"
  131. android:inputType="number"
  132. android:textColor="#333333"
  133. android:textSize="16sp" />
  134. <com.umpay.huafubao.view.CountDownButton
  135. android:id="@+id/btn_code"
  136. android:layout_width="wrap_content"
  137. android:layout_height="wrap_content"
  138. android:layout_gravity="right"
  139. android:layout_marginLeft="15dp"
  140. android:background="@drawable/hfb_btn2"
  141. android:text="获取验证码"
  142. android:textColor="#007bb4"
  143. android:textSize="12sp" />
  144. </LinearLayout>
  145. </LinearLayout>
  146. <TextView
  147. android:id="@+id/tv_goodsInfo"
  148. android:layout_width="fill_parent"
  149. android:layout_height="wrap_content"
  150. android:layout_marginLeft="5dp"
  151. android:layout_marginRight="5dp"
  152. android:layout_marginTop="10dp"
  153. android:background="@drawable/hfb_merdesc_info_bg"
  154. android:textColor="#777777"
  155. android:visibility="gone" />
  156. <TextView
  157. android:id="@+id/tv_smsInfo"
  158. android:layout_width="fill_parent"
  159. android:layout_height="wrap_content"
  160. android:layout_marginLeft="5dp"
  161. android:layout_marginRight="5dp"
  162. android:layout_marginTop="10dp"
  163. android:textColor="#007bb4" />
  164. <Button
  165. android:id="@+id/btn_pay"
  166. style="@style/hfb_txt_style"
  167. android:layout_gravity="center_horizontal"
  168. android:layout_marginBottom="20dp"
  169. android:layout_marginLeft="40dp"
  170. android:layout_marginRight="40dp"
  171. android:layout_marginTop="20dp"
  172. android:background="@drawable/hfb_btn"
  173. android:paddingBottom="10dp"
  174. android:paddingTop="10dp"
  175. android:text="确认支付" />
  176. <TextView
  177. android:id="@+id/tv_smsInfo2"
  178. android:layout_width="fill_parent"
  179. android:layout_height="wrap_content"
  180. android:layout_marginBottom="10dp"
  181. android:layout_marginLeft="10dp"
  182. android:layout_marginRight="10dp"
  183. android:textColor="#999999" />
  184. </LinearLayout>
  185. </ScrollView>
  186. </LinearLayout>