pay_sms.xml 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="wrap_content" >
  5. <RelativeLayout
  6. android:layout_width="match_parent"
  7. android:layout_height="wrap_content"
  8. android:background="#ffffff" >
  9. <RelativeLayout
  10. android:id="@+id/relativeLayout_top"
  11. android:layout_width="fill_parent"
  12. android:layout_height="wrap_content"
  13. android:background="@drawable/top_" >
  14. <ImageView
  15. android:id="@+id/imageView1"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_centerInParent="true"
  19. android:src="@drawable/logo" />
  20. <ImageButton
  21. android:id="@+id/imagebutton_backout"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:layout_alignParentRight="true"
  25. android:layout_centerVertical="true"
  26. android:layout_marginRight="5dp"
  27. android:background="@drawable/backout" />
  28. </RelativeLayout>
  29. <RelativeLayout
  30. android:id="@+id/relativeLayout_md"
  31. android:layout_width="fill_parent"
  32. android:layout_height="wrap_content"
  33. android:layout_alignParentLeft="true"
  34. android:layout_below="@+id/relativeLayout_top"
  35. android:background="@drawable/md_bg" >
  36. <TextView
  37. android:id="@+id/textView_md"
  38. android:layout_width="wrap_content"
  39. android:layout_height="wrap_content"
  40. android:layout_alignParentLeft="true"
  41. android:layout_centerVertical="true"
  42. android:layout_marginLeft="15dp"
  43. />
  44. </RelativeLayout>
  45. <RelativeLayout
  46. android:id="@+id/show_view"
  47. android:layout_width="fill_parent"
  48. android:layout_height="wrap_content"
  49. android:layout_alignLeft="@+id/textView1"
  50. android:layout_below="@+id/relativeLayout_md" >
  51. <!-- 表格布局 -->
  52. <TableLayout
  53. android:id="@+id/tableLayout1"
  54. android:layout_width="fill_parent"
  55. android:layout_height="wrap_content"
  56. android:paddingLeft="15dp"
  57. android:paddingRight="15dp"
  58. android:paddingTop="10dp"
  59. android:paddingBottom="10dp">
  60. <!-- 表格布局:第一行 -->
  61. <TableRow
  62. android:layout_width="fill_parent"
  63. android:layout_height="wrap_content"
  64. android:background="@drawable/shape_top_corner_no_bottom_line"
  65. android:padding="10dp" >
  66. <ImageView
  67. android:id="@+id/imageView2"
  68. android:layout_width="wrap_content"
  69. android:layout_height="wrap_content"
  70. android:layout_alignParentRight="true"
  71. android:layout_centerVertical="true"
  72. android:layout_marginLeft="5dp"
  73. android:src="@drawable/amount" />
  74. <TextView
  75. android:layout_width="wrap_content"
  76. android:layout_height="wrap_content"
  77. android:layout_gravity="center_vertical"
  78. android:layout_marginLeft="5dp"
  79. android:id="@+id/textView_amount"
  80. >
  81. </TextView>
  82. <TextView
  83. android:id="@+id/commodity_amount"
  84. android:layout_width="wrap_content"
  85. android:layout_height="wrap_content"
  86. android:layout_gravity="center_vertical"
  87. android:layout_weight="1"
  88. android:text="2元">
  89. </TextView>
  90. </TableRow>
  91. <!-- 表格布局:第二行 -->
  92. <TableRow
  93. android:layout_width="fill_parent"
  94. android:layout_height="wrap_content"
  95. android:background="@drawable/shape_bottom_corner_no_top_line"
  96. android:padding="5dp" >
  97. <ImageView
  98. android:id="@+id/imageView3"
  99. android:layout_width="wrap_content"
  100. android:layout_height="wrap_content"
  101. android:layout_alignParentRight="true"
  102. android:layout_centerVertical="true"
  103. android:layout_marginLeft="5dp"
  104. android:src="@drawable/commodity" />
  105. <TextView
  106. android:layout_width="wrap_content"
  107. android:layout_height="wrap_content"
  108. android:layout_gravity="center_vertical"
  109. android:layout_marginLeft="5dp"
  110. android:id="@+id/textView_name"
  111. >
  112. </TextView>
  113. <TextView
  114. android:id="@+id/commodity_name"
  115. android:layout_width="wrap_content"
  116. android:layout_height="wrap_content"
  117. android:layout_gravity="center_vertical"
  118. android:layout_weight="1"
  119. android:text="优贝支付合作游戏">
  120. </TextView>
  121. </TableRow>
  122. </TableLayout>
  123. <LinearLayout
  124. android:id="@+id/linearLayout_pay_toast"
  125. android:layout_width="wrap_content"
  126. android:layout_height="wrap_content"
  127. android:layout_alignParentLeft="true"
  128. android:layout_below="@+id/tableLayout1"
  129. android:layout_marginLeft="15dp"
  130. android:gravity="center"
  131. android:orientation="horizontal" >
  132. <TextView
  133. android:id="@+id/textView_sure_toast"
  134. android:layout_width="wrap_content"
  135. android:layout_height="wrap_content"/>
  136. <ImageView
  137. android:id="@+id/imageView4"
  138. android:layout_width="wrap_content"
  139. android:layout_height="wrap_content"
  140. android:src="@drawable/sure"
  141. android:layout_marginLeft="5dp"/>
  142. </LinearLayout>
  143. <Button
  144. android:id="@+id/pay_ok"
  145. android:layout_width="fill_parent"
  146. android:layout_height="wrap_content"
  147. android:layout_below="@+id/linearLayout_pay_toast"
  148. android:layout_marginLeft="10dp"
  149. android:layout_marginRight="10dp"
  150. android:layout_marginTop="5dp"
  151. android:background="@drawable/pay_ok" />
  152. </RelativeLayout>
  153. <ImageView
  154. android:id="@+id/imageView5"
  155. android:layout_width="wrap_content"
  156. android:layout_height="wrap_content"
  157. android:layout_below="@+id/show_view"
  158. android:layout_marginLeft="15dp"
  159. android:layout_marginTop="7dp"
  160. android:src="@drawable/secretary" />
  161. <RelativeLayout
  162. android:layout_width="fill_parent"
  163. android:layout_height="wrap_content"
  164. android:layout_below="@+id/imageView5"
  165. android:layout_marginTop="10dp" >
  166. <ImageView
  167. android:id="@+id/imageView6"
  168. android:layout_width="wrap_content"
  169. android:layout_height="wrap_content"
  170. android:layout_centerInParent="true"
  171. android:src="@drawable/logo_bottom" />
  172. </RelativeLayout>
  173. </RelativeLayout>
  174. </ScrollView>