| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <?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:paddingTop="10dp"
- android:orientation="vertical"
- tools:context=".ui.login.LoginActivity">
- <ImageView
- android:layout_width="221dp"
- android:layout_height="78dp"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="100dp"
- android:src="@mipmap/iv_launcher_icon" />
- <eVVM.apk.widget.RoundRectLayout
- android:layout_width="322dp"
- android:layout_height="236dp"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="52dp"
- android:background="@color/white">
- <LinearLayout
- android:id="@+id/login_ll_phone"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="18dp"
- android:layout_marginTop="22dp"
- android:layout_marginRight="18dp"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <ImageView
- android:layout_width="20dp"
- android:layout_height="20dp"
- android:src="@mipmap/iv_login_phonenum_icon" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="8dp"
- android:text="@string/login_phone"
- android:textSize="15.36sp" />
- </LinearLayout>
- <com.hjq.widget.ClearEditText
- android:id="@+id/login_et_phone"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="28dp"
- android:layout_marginTop="17dp"
- android:background="@null"
- android:inputType="phone"
- android:maxLength="11"
- android:maxLines="1"
- android:hint="@string/login_phone_hint"
- android:text=""
- android:textColorHint="#FFCED2D9"
- android:textSize="17.2dp" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:layout_marginTop="8dp"
- android:background="#FFCED2D9" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/login_ll_phone"
- android:layout_marginLeft="18dp"
- android:layout_marginTop="23dp"
- android:layout_marginRight="18dp"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <ImageView
- android:layout_width="20dp"
- android:layout_height="20dp"
- android:src="@mipmap/iv_loginpwd_icon" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="8dp"
- android:text="@string/login_pwd"
- android:textSize="15.36sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <com.hjq.widget.ClearEditText
- android:id="@+id/login_et_pwd"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="28dp"
- android:layout_marginTop="17dp"
- android:layout_weight="3.8"
- android:background="@null"
- android:maxLength="20"
- android:maxLines="1"
- android:inputType="textPassword"
- android:hint="@string/login_password_hint"
- android:text=""
- android:textColorHint="#FFCED2D9"
- android:textSize="17.2dp" />
- <TextView
- android:id="@+id/login_tv_forgetpwd"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginTop="18dp"
- android:layout_weight="1.2"
- android:text="@string/login_forget"
- android:lines="1"
- android:textColor="#FF0091FB"
- android:textSize="13sp" />
- </LinearLayout>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:layout_marginTop="8dp"
- android:background="#FFCED2D9" />
- </LinearLayout>
- </eVVM.apk.widget.RoundRectLayout>
- <Button
- android:id="@+id/login_btn_login"
- android:layout_width="282dp"
- android:layout_height="52dp"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="-28dp"
- android:background="@drawable/selector_button"
- android:text="@string/login_text"
- android:textColor="@color/white"
- android:textSize="15.3sp" />
- <TextView
- android:id="@+id/login_tv_goregist"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="50dp"
- android:text="@string/login_register"
- android:textColor="#0091FB"
- android:textSize="13.4sp" />
- </LinearLayout>
|