<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:id="@+id/tv_cancel"
|
android:text="取消"
|
android:gravity="center"
|
android:layout_marginStart="12dp"
|
android:layout_marginEnd="12dp"
|
android:layout_marginBottom="20dp"
|
android:background="@drawable/bg_white_6"
|
android:layout_alignParentBottom="true"
|
/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:id="@+id/tv_wx"
|
android:text="微信支付"
|
android:gravity="center"
|
android:layout_marginStart="12dp"
|
android:layout_marginEnd="12dp"
|
android:layout_marginBottom="10dp"
|
android:textColor="@color/black"
|
android:textStyle="bold"
|
android:background="@drawable/bg_white_6"
|
android:layout_above="@id/tv_cancel"
|
/>
|
|
|
</RelativeLayout>
|