123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="360dp"
- android:layout_height="280dp"
- android:layout_gravity="center"
- android:background="@drawable/hnyy_login_bg"
- android:orientation="vertical">
- <RelativeLayout
- android:id="@+id/rl1"
- android:layout_width="match_parent"
- android:layout_height="52dp"
- >
- <ImageButton
- android:id="@+id/close_btn"
- android:layout_width="26dp"
- android:layout_height="match_parent"
- android:layout_marginLeft="30dp"
- android:layout_centerVertical="true"
- android:src="@mipmap/hnyy_reback"
- android:background="@color/hnyy_transparent"
- />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/hnyy_forget_pwd"
- android:textSize="19sp"
- android:layout_centerInParent="true"
- android:textColor="@color/hnyy_edittext_bg_deep_gray"
- />
- <ImageButton
- android:id="@+id/btn_kefu"
- android:layout_width="26dp"
- android:layout_height="match_parent"
- android:layout_marginRight="30dp"
- android:layout_centerVertical="true"
- android:layout_alignParentRight="true"
- android:src="@mipmap/hnyy_kefu"
- android:background="@color/hnyy_transparent"
- />
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="300dp"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal">
- <EditText
- android:id="@+id/et_user_phone"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:background="@drawable/hnyy_edittext_bg"
- android:hint="@string/hnyy_input_phone_number"
- android:textColorHint="@color/hnyy_text_hint_color"
- android:paddingLeft="10dp"
- android:textSize="16sp"
- android:maxLength="20"
- android:digits="0123456789"
- android:layout_centerHorizontal="true"
- android:textColor="@color/hnyy_text_black"
- />
- <EditText
- android:id="@+id/et_user_code"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_marginTop="11dp"
- android:background="@drawable/hnyy_edittext_bg"
- android:hint="@string/hnyy_input_code"
- android:textColorHint="@color/hnyy_text_hint_color"
- android:paddingLeft="10dp"
- android:textSize="16sp"
- android:maxLength="10"
- android:digits="0123456789"
- android:layout_below="@id/et_user_phone"
- android:layout_alignLeft="@id/et_user_phone"
- android:textColor="@color/hnyy_text_black"
- />
- <View
- android:layout_width="1dp"
- android:layout_height="20dp"
- android:layout_marginTop="21dp"
- android:background="@color/hnyy_text_hint_color"
- android:layout_toLeftOf="@id/btn_get_code"
- android:layout_below="@id/et_user_phone"
- />
- <Button
- android:id="@+id/btn_get_code"
- android:layout_width="110dp"
- android:layout_height="40dp"
- android:layout_marginTop="10dp"
- android:background="@null"
- android:textColor="@color/hnyy_text_cyan_color"
- android:textSize="16sp"
- android:text="@string/hnyy_get_phone_code"
- android:gravity="center"
- android:layout_below="@id/et_user_phone"
- android:layout_alignRight="@id/et_user_phone"
- />
- <EditText
- android:id="@+id/et_user_pwd"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:background="@drawable/hnyy_edittext_bg"
- android:textColorHint="@color/hnyy_text_hint_color"
- android:hint="@string/hnyy_input_new_pwd"
- android:paddingLeft="12dp"
- android:textSize="16sp"
- android:maxLength="20"
- android:digits="0123456789abcdefghijgklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="11dp"
- android:layout_below="@id/et_user_code"
- android:layout_alignLeft="@id/et_user_code"
- android:inputType="textPassword"
- android:textColor="@color/hnyy_text_black"
- />
- <Button
- android:id="@+id/reg_compete_btn"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_centerHorizontal="true"
- android:layout_gravity="center_horizontal"
- android:background="@drawable/hnyy_login_button_style"
- android:text="@string/hnyy_find_pwd_phone"
- android:textSize="16sp"
- android:textColor="@color/hnyy_white"
- android:minHeight="1dp"
- android:minWidth="1dp"
- android:gravity="center"
- android:layout_below="@id/et_user_pwd"
- android:layout_marginTop="11dp"
- />
- <TextView
- android:id="@+id/tv_tip_1"
- android:layout_marginTop="8dp"
- android:layout_below="@id/reg_compete_btn"
- android:layout_width="wrap_content"
- android:layout_height="20dp"
- android:gravity="center"
- android:layout_marginLeft="40dp"
- android:text="@string/hnyy_forget_pwd_tip"
- android:textColor="@color/hnyy_text_black"
- />
- <TextView
- android:id="@+id/tv_tip_2"
- android:layout_marginTop="8dp"
- android:layout_below="@id/reg_compete_btn"
- android:layout_width="wrap_content"
- android:layout_height="20dp"
- android:gravity="center"
- android:text="@string/hnyy_contact_tip"
- android:textColor="@color/hnyy_font_red_color"
- android:layout_toRightOf="@id/tv_tip_1"
- android:clickable="true"
- />
- <TextView
- android:layout_marginTop="8dp"
- android:layout_below="@id/reg_compete_btn"
- android:layout_width="wrap_content"
- android:layout_height="20dp"
- android:gravity="center"
- android:text="@string/hnyy_get_back_tip"
- android:layout_toRightOf="@id/tv_tip_2"
- android:textColor="@color/hnyy_text_black"
- />
- </RelativeLayout>
- </LinearLayout>
|