pay_container.xml
819 Bytes
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/payment_common_bg"
android:orientation="vertical" >
<Button
android:id="@+id/wx_pay"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="微信支付" />
<Button
android:id="@+id/ali_pay"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="支付宝" />
<Button
android:id="@+id/union_pay"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="银联支付" />
</LinearLayout>