mine_change_pwd_activity.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:orientation="vertical"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <android.support.design.widget.AppBarLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content">
  10. <com.shuishuo.app.common.views.BaseToolbar
  11. android:id="@id/toolbar"
  12. android:layout_width="match_parent"
  13. android:layout_height="@dimen/action_bar_height"
  14. app:title="修改密码"
  15. app:left_text="返回"
  16. style="@style/fullToolbarStyle"/>
  17. </android.support.design.widget.AppBarLayout>
  18. <LinearLayout
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent"
  21. android:orientation="vertical"
  22. android:padding="16dp">
  23. <EditText
  24. android:id="@+id/mine_change_pwd_old_ET"
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:hint="请输入旧密码"
  28. android:layout_marginTop="16dp"
  29. android:inputType="textPassword"/>
  30. <EditText
  31. android:id="@+id/mine_change_pwd_new_ET"
  32. android:layout_width="match_parent"
  33. android:layout_height="wrap_content"
  34. android:hint="请输入新密码"
  35. android:layout_marginTop="16dp"
  36. android:inputType="textPassword"/>
  37. <EditText
  38. android:id="@+id/mine_change_pwd_confirm_ET"
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content"
  41. android:hint="请确认新密码"
  42. android:layout_marginTop="16dp"
  43. android:inputType="textPassword"/>
  44. <TextView
  45. android:id="@+id/mine_change_pwd_tips"
  46. android:layout_width="match_parent"
  47. android:layout_height="wrap_content"
  48. android:layout_marginTop="20dp"
  49. android:text="安全等级低:数字和字母,长度8位 \n安全等级中:长度10位 \n安全等级高:包含大写字母,长度12位"
  50. android:textColor="@color/grey_light" />
  51. </LinearLayout>
  52. </LinearLayout>