31aa288b0bf21663bf4570899b879f6c4f78835d.svn-base 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. tools:context=".ui.My.change.ChangeEmailActivity">
  9. <com.hjq.bar.TitleBar
  10. android:id="@+id/tb_information_title"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. app:title="修改邮箱" />
  14. <LinearLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="57.6dp"
  17. android:layout_marginLeft="9.6dp"
  18. android:layout_marginTop="11.6dp"
  19. android:layout_marginRight="9.6dp"
  20. android:background="@color/white"
  21. android:gravity="center_vertical"
  22. android:orientation="horizontal">
  23. <ImageView
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_marginLeft="11.8dp"
  27. android:src="@mipmap/iv_information_email" />
  28. <TextView
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:layout_marginLeft="10dp"
  32. android:text="@string/personal_data_email"
  33. android:textSize="15.3sp" />
  34. <EditText
  35. android:id="@+id/information_et_email"
  36. android:layout_width="0dp"
  37. android:layout_height="wrap_content"
  38. android:layout_marginLeft="51.5dp"
  39. android:layout_weight="1"
  40. android:background="@null"
  41. android:hint="@string/personal_data_email_hint"
  42. android:maxLength="25"
  43. android:maxLines="1"
  44. android:textSize="15.3sp" />
  45. </LinearLayout>
  46. <LinearLayout
  47. android:layout_width="match_parent"
  48. android:layout_height="57.6dp"
  49. android:layout_marginLeft="9.6dp"
  50. android:layout_marginTop="11.6dp"
  51. android:layout_marginRight="9.6dp"
  52. android:background="@color/white"
  53. android:gravity="center_vertical"
  54. android:orientation="horizontal">
  55. <ImageView
  56. android:layout_width="wrap_content"
  57. android:layout_height="wrap_content"
  58. android:layout_marginLeft="11.8dp"
  59. android:src="@mipmap/iv_code_icon" />
  60. <TextView
  61. android:layout_width="wrap_content"
  62. android:layout_height="wrap_content"
  63. android:layout_marginLeft="10dp"
  64. android:text="@string/login_code"
  65. android:textSize="15.3sp" />
  66. <LinearLayout
  67. android:layout_width="match_parent"
  68. android:layout_height="wrap_content">
  69. <EditText
  70. android:id="@+id/information_et_code"
  71. android:layout_width="0dp"
  72. android:layout_height="wrap_content"
  73. android:layout_marginLeft="35dp"
  74. android:layout_weight="1"
  75. android:background="@null"
  76. android:hint="@string/common_code_input_hint"
  77. android:inputType="phone"
  78. android:maxLength="6"
  79. android:maxLines="1"
  80. android:textSize="15.3sp" />
  81. <View
  82. style="@style/VerticalLineStyle"
  83. android:layout_marginTop="@dimen/space_20"
  84. android:layout_marginBottom="@dimen/space_20" />
  85. <com.hjq.widget.CountdownView
  86. android:id="@+id/cv_password_forget_countdown"
  87. style="@style/CountdownViewStyle" />
  88. </LinearLayout>
  89. </LinearLayout>
  90. <Button
  91. android:id="@+id/forget_btn_login"
  92. android:layout_width="282dp"
  93. android:layout_height="48dp"
  94. android:layout_gravity="center_horizontal"
  95. android:layout_marginTop="38.5dp"
  96. android:background="@drawable/selector_button"
  97. android:text="@string/personal_data_reset"
  98. android:textColor="@color/white"
  99. android:textSize="15.3sp" />
  100. </LinearLayout>