<?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">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginStart="20dp"
        android:layout_marginTop="20dp"
        android:layout_marginEnd="20dp"
        android:layout_marginBottom="20dp"
        android:text="此页面仅用来演示其他登录，不含实际功能，开发者根据需求设置自己的其他登录方式"
        android:textColor="#ff5000"
        android:textSize="20dp" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_centerInParent="true">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            >

            <ImageView
                android:id="@+id/phone"
                android:layout_width="36dp"
                android:layout_height="36dp"
                android:scaleType="center"
                android:layout_margin="5dp"
                android:background="@drawable/phone"/>

            <EditText
                android:id="@+id/et_number"
                android:layout_width="200dp"
                android:layout_height="48dp"
                android:layout_toRightOf="@id/phone"
                android:inputType="phone"
                android:hint="请输入手机号"
                />
        </RelativeLayout>

        <Button
            android:id="@+id/auth_btn"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/selector_btn"
            android:layout_marginTop="40dp"
            android:layout_marginHorizontal="40dp"
            android:text="获取验证码"/>

    </LinearLayout>


</RelativeLayout>