| <?xml version="1.0" encoding="utf-8"?> | 
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 
|     android:id="@+id/ll_root" | 
|     android:layout_width="match_parent" | 
|     android:layout_height="match_parent" | 
|     android:background="@color/ac_bg" | 
|     android:orientation="vertical"> | 
|     <include layout="@layout/top_bar_layout_txt"/> | 
|   | 
|     <RelativeLayout | 
|         android:layout_width="match_parent" | 
|         android:layout_height="wrap_content" | 
|         android:layout_marginLeft="@dimen/x16" | 
|         android:layout_marginRight="@dimen/x16" | 
|         android:layout_marginTop="@dimen/x20" | 
|         android:background="@drawable/green_white_bg" | 
|         android:padding="@dimen/x10"> | 
|         <ImageView | 
|             android:id="@+id/iv1" | 
|             android:layout_width="@dimen/x16" | 
|             android:layout_height="@dimen/x16" | 
|             android:layout_centerVertical="true" | 
|             android:src="@mipmap/icon_account_phone"/> | 
|         <EditText | 
|             android:id="@+id/et_phone" | 
|             android:layout_width="match_parent" | 
|             android:layout_height="wrap_content" | 
|             android:layout_toRightOf="@+id/iv1" | 
|             android:layout_centerVertical="true" | 
|             android:background="@null" | 
|             android:hint="请输入手机号" | 
|             android:textColorHint="@color/gray_txt" | 
|             android:inputType="number" | 
|             android:paddingLeft="@dimen/x10" | 
|             android:paddingRight="@dimen/x10" | 
|             android:textSize="16sp" /> | 
|     </RelativeLayout> | 
|     <RelativeLayout | 
|         android:layout_width="match_parent" | 
|         android:layout_height="wrap_content" | 
|         android:padding="@dimen/x16"> | 
|         <Button | 
|             android:id="@+id/bt_code" | 
|             android:layout_width="wrap_content" | 
|             android:layout_height="@dimen/x40" | 
|             android:layout_alignParentRight="true" | 
|             android:textColor="@color/white" | 
|             android:gravity="center" | 
|             android:background="@mipmap/bt_red_small" | 
|             android:paddingLeft="@dimen/x8" | 
|             android:paddingRight="@dimen/x8" | 
|             android:paddingBottom="@dimen/x12" | 
|             android:paddingTop="@dimen/x12" | 
|             android:text="获取验证码"/> | 
|         <EditText | 
|             android:id="@+id/et_code" | 
|             android:layout_width="match_parent" | 
|             android:layout_height="wrap_content" | 
|             android:background="@drawable/green_white_bg" | 
|             android:hint="请输入验证码" | 
|             android:textColorHint="@color/gray_txt" | 
|             android:inputType="number" | 
|             android:textSize="16sp" | 
|             android:padding="@dimen/x12" | 
|             android:layout_marginRight="@dimen/x8" | 
|             android:layout_toLeftOf="@id/bt_code"/> | 
|     </RelativeLayout> | 
|     <RelativeLayout | 
|         android:layout_width="match_parent" | 
|         android:layout_height="wrap_content" | 
|         android:layout_marginLeft="@dimen/x16" | 
|         android:layout_marginRight="@dimen/x16" | 
|         android:background="@drawable/green_white_bg" | 
|         android:padding="@dimen/x10"> | 
|         <ImageView | 
|             android:id="@+id/iv2" | 
|             android:layout_width="@dimen/x16" | 
|             android:layout_height="@dimen/x16" | 
|             android:layout_centerVertical="true" | 
|             android:src="@mipmap/icon_pwd"/> | 
|   | 
|         <EditText | 
|             android:id="@+id/et_pwd" | 
|             android:layout_width="match_parent" | 
|             android:layout_height="wrap_content" | 
|             android:layout_toRightOf="@+id/iv2" | 
|             android:layout_centerVertical="true" | 
|             android:background="@null" | 
|             android:hint="请输入您的新密码" | 
|             android:textColorHint="@color/gray_txt" | 
|             android:inputType="number" | 
|             android:paddingLeft="@dimen/x10" | 
|             android:paddingRight="@dimen/x10" | 
|             android:textSize="16sp" /> | 
|     </RelativeLayout> | 
|     <RelativeLayout | 
|         android:layout_width="match_parent" | 
|         android:layout_height="wrap_content" | 
|         android:layout_marginLeft="@dimen/x16" | 
|         android:layout_marginRight="@dimen/x16" | 
|         android:layout_marginTop="@dimen/x16" | 
|         android:background="@drawable/green_white_bg" | 
|         android:padding="@dimen/x10"> | 
|         <ImageView | 
|             android:id="@+id/iv3" | 
|             android:layout_width="@dimen/x16" | 
|             android:layout_height="@dimen/x16" | 
|             android:layout_centerVertical="true" | 
|             android:src="@mipmap/icon_pwd"/> | 
|   | 
|         <EditText | 
|             android:id="@+id/et_pwd2" | 
|             android:layout_width="match_parent" | 
|             android:layout_height="wrap_content" | 
|             android:layout_toRightOf="@+id/iv3" | 
|             android:layout_centerVertical="true" | 
|             android:background="@null" | 
|             android:hint="请确认您的新密码" | 
|             android:textColorHint="@color/gray_txt" | 
|             android:inputType="number" | 
|             android:paddingLeft="@dimen/x10" | 
|             android:paddingRight="@dimen/x10" | 
|             android:textSize="16sp" /> | 
|     </RelativeLayout> | 
|     <Button | 
|         android:id="@+id/bt_sure" | 
|         android:layout_width="match_parent" | 
|         android:layout_height="@dimen/x40" | 
|         android:layout_marginLeft="@dimen/x16" | 
|         android:layout_marginRight="@dimen/x16" | 
|         android:layout_marginTop="@dimen/x20" | 
|         android:background="@mipmap/bt_red" | 
|         android:gravity="center" | 
|         android:text="修改" | 
|         android:textColor="@color/white" | 
|         android:textColorHint="@color/white" | 
|         android:textSize="16sp" /> | 
| </LinearLayout> |