63 lines
2.5 KiB
XML
63 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rl_dialog_bg"
|
|
android:layout_width="@dimen/main_exitapp_bgwidth"
|
|
android:layout_height="@dimen/main_exitapp_bgheight"
|
|
android:background="@drawable/accountdialog_itembg_new" >
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/PX100x"
|
|
>
|
|
|
|
<TextView
|
|
style="@style/DefaultFont"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:text="退出系统"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="@dimen/dialog_marginSize" />
|
|
</RelativeLayout>
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/main_exitapp_panda"
|
|
android:layout_width="@dimen/main_exitapp_width"
|
|
android:layout_height="@dimen/main_exitapp_height"
|
|
android:layout_centerInParent="true" />
|
|
|
|
<Button
|
|
style="@style/DefaultFont"
|
|
android:id="@+id/main_exitapp_sure"
|
|
android:layout_width="@dimen/account_dialog_bigWidth"
|
|
android:layout_height="@dimen/account_dialog_bigHeight"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_marginBottom="@dimen/PX30x"
|
|
android:layout_marginLeft="@dimen/PX60x"
|
|
android:background="@drawable/accountdialog_topbg_new"
|
|
android:gravity="center"
|
|
android:text="退\t出"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="@dimen/dialog_btnSize" />
|
|
|
|
<Button
|
|
style="@style/DefaultFont"
|
|
android:id="@+id/main_exitapp_cancle"
|
|
android:layout_width="@dimen/account_dialog_bigWidth"
|
|
android:layout_height="@dimen/account_dialog_bigHeight"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignTop="@id/main_exitapp_sure"
|
|
android:layout_marginRight="@dimen/PX60x"
|
|
android:background="@drawable/accountdialog_topbg_new"
|
|
android:text="取\t消"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="@dimen/dialog_btnSize" />
|
|
</RelativeLayout>
|
|
</FrameLayout>
|