You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.9 KiB
63 lines
1.9 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/bg"
|
|
tools:context=".BackActivity">
|
|
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="120dp"
|
|
android:gravity="center"
|
|
android:text="确定要退出登陆吗"
|
|
android:textSize="30sp"
|
|
android:textColor="#516D2C"/>
|
|
|
|
|
|
<ImageView
|
|
android:layout_width="140dp"
|
|
android:layout_height="140dp"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="40dp"
|
|
app:srcCompat="@drawable/back" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="40dp"
|
|
android:layout_centerVertical="true">
|
|
|
|
<Button
|
|
android:id="@+id/bt_backfalse"
|
|
android:layout_width="170dp"
|
|
android:layout_height="50dp"
|
|
android:layout_marginLeft="20dp"
|
|
android:layout_marginTop="15dp"
|
|
android:layout_marginRight="10dp"
|
|
android:background="@drawable/btn_selector"
|
|
android:text="算了"
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="20sp" />
|
|
|
|
<Button
|
|
android:id="@+id/bt_backtrue"
|
|
android:layout_width="170dp"
|
|
android:layout_height="50dp"
|
|
android:layout_marginTop="15dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:background="@drawable/btn_selector"
|
|
android:text="确定"
|
|
android:textColor="#FFFFFF"
|
|
android:textSize="20sp" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout> |