123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <android.support.design.widget.AppBarLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:theme="@style/AppTheme.NoActionBar.AppBarOverlay">
- <com.shuishuo.app.common.views.BaseToolbar
- android:id="@+id/toolbar"
- style="@style/fullToolbarStyle"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- </android.support.design.widget.AppBarLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="15dp">
- <TextView
- android:layout_width="80dp"
- android:layout_height="wrap_content"
- android:text="手机号"
- android:textColor="@color/black"
- android:textSize="18sp" />
- <EditText
- android:id="@+id/mobile_txt"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="90dp"
- android:background="@null"
- android:ems="10"
- android:hint="输入手机号"
- android:inputType="phone" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/grey_light" />
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:padding="15dp">
- <TextView
- android:layout_width="80dp"
- android:layout_height="wrap_content"
- android:text="验证码"
- android:textColor="@color/black"
- android:textSize="18sp" />
- <EditText
- android:id="@+id/code_txt"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="90dp"
- android:layout_marginRight="110dp"
- android:background="@null"
- android:ems="10"
- android:hint="输入验证码"
- android:inputType="number" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="right"
- android:orientation="horizontal">
- <View
- android:id="@+id/view3"
- android:layout_width="1dp"
- android:layout_height="18dp"
- android:background="@color/grey_light" />
- <Button
- android:id="@+id/send_code_btn"
- android:layout_width="100dp"
- android:layout_height="20dp"
- android:background="@null"
- android:text="获取验证码"
- android:textColor="@color/color_green_00ae8c"
- android:textSize="16sp" />
- </LinearLayout>
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/grey_light" />
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:padding="15dp">
- <TextView
- android:layout_width="80dp"
- android:layout_height="wrap_content"
- android:text="密码"
- android:textColor="@color/black"
- android:textSize="18sp" />
- <EditText
- android:id="@+id/pwd_txt"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="90dp"
- android:background="@null"
- android:ems="10"
- android:hint="输入8位以上新密码"
- android:inputType="textPassword" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/grey_light" />
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:padding="15dp">
- <TextView
- android:layout_width="80dp"
- android:layout_height="wrap_content"
- android:text="确认密码"
- android:textColor="@color/black"
- android:textSize="18sp" />
- <EditText
- android:id="@+id/confirm_txt"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="90dp"
- android:background="@null"
- android:ems="10"
- android:hint="再输一次密码"
- android:inputType="textPassword" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/grey_light" />
- </LinearLayout>
- </LinearLayout>
|