<?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:id="@+id/change_pwd_ll"
|
android:background="@color/background"
|
android:orientation="vertical" >
|
|
<RelativeLayout
|
android:id="@+id/title_layout"
|
android:layout_width="match_parent"
|
android:layout_height="45dp"
|
android:background="@color/white" >
|
|
<ImageView
|
android:id="@+id/mImageTitleBack"
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:layout_centerVertical="true"
|
android:layout_marginLeft="8dp"
|
android:padding="5dp"
|
android:src="@drawable/mg_ic_toolbar_back" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerHorizontal="true"
|
android:layout_centerVertical="true"
|
android:text="修改密码"
|
android:textColor="@color/text_4c"
|
android:textSize="17sp" />
|
</RelativeLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0.6dp"
|
android:background="@color/mg_line" />
|
|
<ScrollView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:scrollbars="none" >
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="30dp"
|
android:layout_marginRight="30dp"
|
android:paddingBottom="30dp"
|
android:orientation="vertical" >
|
|
<TextView
|
android:id="@+id/fragment_changepwd_account_tip_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="15dp"
|
android:layout_marginTop="15dp"
|
android:text="@string/your_account_is"
|
android:textColor="@color/light_black"
|
android:textSize="15sp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="当前密码"
|
android:textColor="@color/light_black"
|
android:textSize="15sp" />
|
|
<EditText
|
android:id="@+id/fragment_changepwd_current_pwd_ed"
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:background="@color/white2"
|
android:gravity="center_vertical"
|
android:hint="请输入6-20位字母和数字"
|
android:inputType="textPassword"
|
android:maxLength="20"
|
android:paddingLeft="5dp"
|
android:singleLine="true"
|
android:textColor="@color/light_black"
|
android:textColorHint="@color/light_black2"
|
android:textSize="13sp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="10dp"
|
android:text="新密码"
|
android:textColor="@color/light_black"
|
android:textSize="15sp" />
|
|
<EditText
|
android:id="@+id/fragment_changepwd_new_pwd_ed"
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:background="@color/white2"
|
android:gravity="center_vertical"
|
android:hint="请输入6-20位字母和数字"
|
android:inputType="textPassword"
|
android:maxLength="20"
|
android:paddingLeft="5dp"
|
android:singleLine="true"
|
android:textColor="@color/light_black"
|
android:textColorHint="@color/light_black2"
|
android:textSize="13sp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="10dp"
|
android:text="确认新密码"
|
android:textColor="@color/light_black"
|
android:textSize="15sp" />
|
|
<EditText
|
android:id="@+id/fragment_changepwd_confirm_new_pwd_ed"
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:background="@color/white2"
|
android:gravity="center_vertical"
|
android:hint="请输入6-20位字母和数字"
|
android:inputType="textPassword"
|
android:maxLength="20"
|
android:paddingLeft="5dp"
|
android:singleLine="true"
|
android:textColor="@color/light_black"
|
android:textColorHint="@color/light_black2"
|
android:textSize="13sp" />
|
|
<LinearLayout
|
android:id="@+id/fragment_changepwd_submit_btn"
|
android:layout_width="match_parent"
|
android:layout_height="45dp"
|
android:layout_marginTop="15dp"
|
android:background="@drawable/drawable_exit_account_button"
|
android:gravity="center"
|
android:orientation="horizontal"
|
android:paddingBottom="8dp"
|
android:paddingTop="8dp" >
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="提 交"
|
android:textColor="@color/white"
|
android:textSize="20sp" />
|
</LinearLayout>
|
<!-- <Button
|
android:id="@+id/fragment_changepwd_submit_btn"
|
android:layout_width="match_parent"
|
android:layout_height="45dp"
|
android:layout_marginTop="20dp"
|
android:background="@drawable/submit_selector" /> -->
|
</LinearLayout>
|
</ScrollView>
|
|
</LinearLayout>
|