12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <android.support.design.widget.AppBarLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <com.sheishuo.app.common.views.BaseToolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:title="支付方式" />
- </android.support.design.widget.AppBarLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:gravity="center">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:orientation="horizontal">
- <ImageView
- android:id="@+id/trade_pay_method_wechat_img"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginEnd="32dp"
- android:layout_marginRight="32dp"
- android:src="@drawable/ico_pay_method_wechat" />
- <ImageView
- android:id="@+id/trade_pay_method_alipay_img"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="32dp"
- android:layout_marginStart="32dp"
- android:src="@drawable/ico_pay_method_alipay" />
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
|