<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout
|
android:id="@+id/ll_main_login_phone"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="25dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal">
|
|
<ImageView
|
android:layout_width="15dp"
|
android:layout_height="wrap_content"
|
android:src="@mipmap/login_phone" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="10dp"
|
android:text="手机号"
|
android:textColor="#ff333333"
|
android:textSize="14sp" />
|
|
</LinearLayout>
|
|
<EditText
|
android:id="@+id/et_login_phone"
|
android:layout_width="match_parent"
|
android:layout_height="36dp"
|
android:maxLength="11"
|
android:inputType="number"
|
android:background="@null"
|
android:layout_marginTop="4dp"
|
android:hint="请输入有效手机号"
|
android:textColor="#333333"
|
android:textSize="14sp" />
|
|
<include layout="@layout/include_line" />
|
|
</LinearLayout>
|