fragment_recover_pwd.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="@dimen/fragment_common_width"
  5. android:layout_height="@dimen/fragment_common_height"
  6. android:layout_gravity="center"
  7. android:background="#ffffff"
  8. android:gravity="center_horizontal"
  9. android:orientation="vertical">
  10. <include
  11. layout="@layout/include_top"/>
  12. <LinearLayout
  13. android:id="@id/enter_phone_num_ll"
  14. style="@style/ll_input_field_common"
  15. android:layout_marginTop="25dp">
  16. <TextView
  17. style="@style/tv_area_code"
  18. android:text="@string/area_code"/>
  19. <View
  20. android:layout_width="1dp"
  21. android:layout_height="match_parent"
  22. android:background="@color/line_bg"/>
  23. <com.kingcheergame.jqgamesdk.view.ClearableEditText
  24. android:id="@id/phone_num_et"
  25. style="@style/et_input_field_common"
  26. android:hint="@string/please_enter_the_phone_number"
  27. android:inputType="number"
  28. android:paddingRight="@dimen/cet_right_padding"/>
  29. </LinearLayout>
  30. <LinearLayout
  31. android:id="@id/enter_verification_code_ll"
  32. style="@style/ll_input_field_common"
  33. android:layout_marginTop="16dp">
  34. <ImageView
  35. style="@style/iv_input_field_common"
  36. android:src="@drawable/iv_get_notification_code"/>
  37. <View
  38. android:layout_width="1dp"
  39. android:layout_height="match_parent"
  40. android:background="@color/line_bg"/>
  41. <com.kingcheergame.jqgamesdk.view.ClearableEditText
  42. android:id="@id/verification_code_et"
  43. style="@style/et_input_field_common"
  44. android:hint="@string/please_enter_verification_code"
  45. android:inputType="number"/>
  46. <View
  47. android:id="@id/split_line_view"
  48. android:layout_width="1px"
  49. android:layout_height="match_parent"
  50. android:layout_gravity="center_vertical"
  51. android:layout_marginBottom="4dp"
  52. android:layout_marginLeft="4dp"
  53. android:layout_marginTop="4dp"
  54. android:background="#777879"
  55. android:visibility="gone"/>
  56. <Button
  57. android:id="@id/get_verification_code_btn"
  58. style="@style/btn_get_notification_code"
  59. android:layout_margin="1dp"
  60. android:text="@string/get_verification_code"/>
  61. </LinearLayout>
  62. <LinearLayout
  63. android:id="@id/enter_pwd_ll"
  64. style="@style/ll_input_field_common"
  65. android:layout_marginTop="15dp"
  66. android:visibility="gone">
  67. <ImageView
  68. style="@style/iv_input_field_common"
  69. android:src="@drawable/iv_enter_pwd"/>
  70. <View
  71. android:layout_width="1dp"
  72. android:layout_height="match_parent"
  73. android:background="@color/line_bg"/>
  74. <com.kingcheergame.jqgamesdk.view.ClearableEditText
  75. android:id="@id/new_pwd_et"
  76. style="@style/et_input_field_common"
  77. android:hint="@string/please_enter_new_pwd"
  78. android:inputType="textPassword"
  79. android:paddingRight="@dimen/cet_right_padding"/>
  80. </LinearLayout>
  81. <Button
  82. android:id="@id/next_step_btn"
  83. style="@style/btn_common"
  84. android:layout_marginTop="16dp"
  85. android:background="@drawable/selector_btn_deep_green"
  86. android:text="@string/next_step"/>
  87. <LinearLayout
  88. android:id="@id/customer_service_ll"
  89. android:layout_width="match_parent"
  90. android:layout_height="wrap_content"
  91. android:layout_marginTop="8dp"
  92. android:gravity="center">
  93. <TextView
  94. android:layout_width="wrap_content"
  95. android:layout_height="wrap_content"
  96. android:gravity="center"
  97. android:text="@string/contact_qq_customer_service"
  98. android:textColor="#444444"
  99. android:textSize="12sp"/>
  100. <TextView
  101. android:id="@id/qq_number_tv"
  102. android:layout_width="wrap_content"
  103. android:layout_height="wrap_content"
  104. android:gravity="center"
  105. android:textColor="#0D6FB8"
  106. android:textSize="12sp"/>
  107. </LinearLayout>
  108. <Button
  109. android:id="@id/finish_btn"
  110. style="@style/btn_common"
  111. android:layout_marginBottom="20dp"
  112. android:layout_marginTop="20dp"
  113. android:background="@drawable/selector_btn_deep_green"
  114. android:text="@string/finish"
  115. android:visibility="gone"/>
  116. <TextView
  117. android:id="@id/customer_service_phone_tv"
  118. style="@style/tv_customer_service_phone"
  119. android:layout_marginTop="10dp"
  120. android:visibility="gone"/>
  121. </LinearLayout>