123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?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">
- <LinearLayout
- android:layout_width="300dp"
- android:layout_height="140dp"
- android:background="@drawable/huosdk_bg_login_rect_2"
- android:orientation="vertical"
- android:layout_centerInParent="true">
- <TextView
- android:id="@+id/huosdk_tv_content"
- android:layout_width="match_parent"
- android:layout_height="95dp"
- android:gravity="center"
- android:text="您确定要退出游戏吗?"
- android:textColor="#ff434343"
- android:textSize="18sp" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:orientation="horizontal">
- <Button
- android:id="@+id/btn_huosdk_cancle"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="#ffededed"
- android:text="取消"
- android:textColor="#ff9b9b9b"
- android:textSize="17sp" />
- <Button
- android:id="@+id/btn_huosdk_confirm"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="#ffd5d5d5"
- android:text="确认"
- android:textColor="#ff4a4a4a"
- android:textSize="17sp" />
- </LinearLayout>
- </LinearLayout>
- </RelativeLayout>
|