123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:background="@drawable/tysdkn_pay_item"
- >
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textColor="#111111"
- android:textSize="15dp"
- android:layout_margin="25dp"
- android:gravity="center"
- android:textStyle="bold"
- android:text="是否切换小号"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textColor="#111111"
- android:textSize="13sp"
- android:gravity="center"
- android:text="切换小号后将会在下次登录游戏时自动生效"/>
- <ImageView
- android:layout_width="match_parent"
- android:layout_marginTop="20dp"
- android:layout_height="1dp"
- android:background="#DCDCDC"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:orientation="horizontal"
- >
- <TextView
- android:id="@+id/tysdkn_dialog_cancel"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:gravity="center"
- android:textSize="12sp"
- android:layout_gravity="center"
- android:textColor="#30B8FF"
- android:text="取消"/>
- <ImageView
- android:layout_width="1dp"
- android:layout_height="match_parent"
- android:background="#DCDCDC"/>
- <TextView
- android:id="@+id/tysdkn_dialog_confirm"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:gravity="center"
- android:layout_gravity="center"
- android:background="@drawable/tysdkn_btn_dialog_sure"
- android:textColor="#ffffff"
- android:textSize="12sp"
- android:text="确认"/>
- </LinearLayout>
- </LinearLayout>
|