trade_pay_method_activity.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical">
  7. <android.support.design.widget.AppBarLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content">
  10. <com.sheishuo.app.common.views.BaseToolbar
  11. android:id="@+id/toolbar"
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. style="@style/fullToolbarStyle"/>
  15. </android.support.design.widget.AppBarLayout>
  16. <LinearLayout
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:orientation="horizontal"
  20. android:padding="15dp">
  21. <TextView
  22. android:id="@+id/textView6"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_weight="1"
  26. android:text="充值金额:" />
  27. <TextView
  28. android:id="@+id/recharge_money"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:layout_marginLeft="10dp"
  32. android:layout_weight="1"
  33. android:text="TextView"
  34. android:textColor="@android:color/holo_red_dark" />
  35. </LinearLayout>
  36. <LinearLayout
  37. android:layout_width="match_parent"
  38. android:layout_height="5dp"
  39. android:background="@color/grey_light_light"
  40. android:orientation="horizontal"></LinearLayout>
  41. <LinearLayout
  42. android:layout_width="match_parent"
  43. android:layout_height="match_parent"
  44. android:orientation="vertical"
  45. android:padding="15dp">
  46. <TextView
  47. android:id="@+id/textView7"
  48. android:layout_width="match_parent"
  49. android:layout_height="wrap_content"
  50. android:text="选择支付方式" />
  51. <LinearLayout
  52. android:layout_width="match_parent"
  53. android:layout_height="wrap_content"
  54. android:layout_marginTop="30dp"
  55. android:gravity="center"
  56. android:orientation="horizontal">
  57. <ImageView
  58. android:id="@+id/trade_pay_method_wechat_img"
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:layout_marginEnd="32dp"
  62. android:layout_marginRight="32dp"
  63. android:src="@drawable/ico_pay_method_wechat" />
  64. <ImageView
  65. android:id="@+id/trade_pay_method_alipay_img"
  66. android:layout_width="wrap_content"
  67. android:layout_height="wrap_content"
  68. android:layout_marginLeft="32dp"
  69. android:layout_marginStart="32dp"
  70. android:src="@drawable/ico_pay_method_alipay" />
  71. </LinearLayout>
  72. </LinearLayout>
  73. </LinearLayout>