trade_pay_method_activity.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. app:title="支付方式" />
  15. </android.support.design.widget.AppBarLayout>
  16. <LinearLayout
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:orientation="vertical"
  20. android:gravity="center">
  21. <LinearLayout
  22. android:layout_width="match_parent"
  23. android:layout_height="wrap_content"
  24. android:gravity="center"
  25. android:orientation="horizontal">
  26. <ImageView
  27. android:id="@+id/trade_pay_method_wechat_img"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:layout_marginEnd="32dp"
  31. android:layout_marginRight="32dp"
  32. android:src="@drawable/ico_pay_method_wechat" />
  33. <ImageView
  34. android:id="@+id/trade_pay_method_alipay_img"
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:layout_marginLeft="32dp"
  38. android:layout_marginStart="32dp"
  39. android:src="@drawable/ico_pay_method_alipay" />
  40. </LinearLayout>
  41. </LinearLayout>
  42. </LinearLayout>