<?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"
android:background="@mipmap/background_login">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/button_login"
android:layout_width="36dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="82dp"
android:background="@color/transparent"
android:scaleType="fitXY"
android:adjustViewBounds="true"
android:src="@mipmap/login"
/>
</RelativeLayout>

<?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"
android:background="#ffffff"
android:orientation="vertical">
<EditText
android:id="@+id/edittext1"
android:layout_width="match_parent"
android:layout_height="46dp"
android:layout_alignParentTop="true"
android:layout_marginTop="92dp"
android:layout_marginLeft="35dp"
android:layout_marginRight="35dp"
android:background="@drawable/yuanxing"
android:hint="请输入账号"
android:textSize="16sp" />
<EditText
android:id="@+id/edittext2"
android:layout_width="match_parent"
android:layout_height="46dp"
android:layout_below="@+id/edittext1"
android:layout_alignLeft="@+id/edittext1"
android:layout_marginTop="10dp"
android:layout_alignRight="@+id/edittext1"
android:background="@drawable/yuanxing"
android:hint="请输入密码"
android:textSize="16sp"
/>
<Button
android:id="@+id/register_button"
android:layout_width="match_parent"
android:layout_height="46dp"
android:layout_below="@+id/edittext2"
android:layout_alignLeft="@+id/edittext1"
android:layout_marginTop="10dp"
android:layout_alignRight="@+id/edittext1"
android:background="@drawable/test"
android:text="登陆"
android:textSize="16sp"
</RelativeLayout>
