xunqu_fragment_forgetpwd.xml 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="wrap_content"
  5. android:layout_height="wrap_content">
  6. <LinearLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"
  9. android:orientation="vertical" >
  10. <RelativeLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="40dp"
  13. android:layout_marginLeft="20dp"
  14. android:layout_marginRight="20dp"
  15. android:background="@drawable/xunqu_login_etx_bg" >
  16. <ImageView
  17. android:id="@+id/xunqu_iv_user_name"
  18. android:layout_width="18dp"
  19. android:layout_height="18dp"
  20. android:layout_alignParentLeft="true"
  21. android:layout_centerVertical="true"
  22. android:layout_marginLeft="10dp"
  23. android:src="@drawable/xunqu_icon_user" />
  24. <EditText
  25. android:id="@+id/xunqu_etx_user_tel"
  26. android:layout_width="wrap_content"
  27. android:layout_height="30dp"
  28. android:layout_centerVertical="true"
  29. android:layout_marginLeft="10dp"
  30. android:layout_toLeftOf="@+id/xunqu_btn_close"
  31. android:layout_toRightOf="@+id/xunqu_iv_user_name"
  32. android:background="#00000000"
  33. android:ems="10"
  34. android:hint="请输入手机号"
  35. android:inputType="phone"
  36. android:maxLength="11"
  37. android:textColor="#1790C8"
  38. android:textColorHint="#D0D0D0"
  39. android:layout_marginRight="10dp"
  40. android:singleLine="true"
  41. android:textSize="14dp" >
  42. </EditText>
  43. <Button
  44. android:id="@+id/xunqu_btn_close"
  45. android:layout_width="18dp"
  46. android:layout_height="18dp"
  47. android:layout_alignParentRight="true"
  48. android:layout_centerVertical="true"
  49. android:layout_marginRight="10dp"
  50. android:visibility="invisible"
  51. android:background="@drawable/xunqu_icon_close" />
  52. </RelativeLayout>
  53. <RelativeLayout
  54. android:layout_width="match_parent"
  55. android:layout_height="40dp"
  56. android:layout_marginLeft="20dp"
  57. android:layout_marginRight="20dp"
  58. android:layout_marginTop="7dp"
  59. android:background="@drawable/xunqu_login_etx_bg" >
  60. <ImageView
  61. android:id="@+id/xunqu_iv_code"
  62. android:layout_width="18dp"
  63. android:layout_height="18dp"
  64. android:layout_alignParentLeft="true"
  65. android:layout_centerVertical="true"
  66. android:layout_marginLeft="10dp"
  67. android:src="@drawable/xunqu_icon_code" />
  68. <EditText
  69. android:id="@+id/xunqu_etx_code"
  70. android:layout_width="wrap_content"
  71. android:layout_height="30dp"
  72. android:layout_centerVertical="true"
  73. android:layout_marginLeft="10dp"
  74. android:layout_marginRight="10dp"
  75. android:layout_toLeftOf="@+id/xunqu_btn_code"
  76. android:layout_toRightOf="@+id/xunqu_iv_code"
  77. android:background="#00000000"
  78. android:ems="10"
  79. android:hint="请输入验证码"
  80. android:textColor="#1790C8"
  81. android:textColorHint="#D0D0D0"
  82. android:singleLine="true"
  83. android:maxLength="10"
  84. android:textSize="14dp" />
  85. <Button
  86. android:id="@+id/xunqu_btn_code"
  87. android:layout_width="80dp"
  88. android:layout_height="40dp"
  89. android:layout_alignParentRight="true"
  90. android:layout_centerVertical="true"
  91. android:background="@drawable/xunqu_button_blue"
  92. android:text="获取验证码"
  93. android:textColor="#FFFFFF"
  94. android:textSize="12dp" />
  95. </RelativeLayout>
  96. <RelativeLayout
  97. android:layout_width="match_parent"
  98. android:layout_height="40dp"
  99. android:layout_marginLeft="20dp"
  100. android:layout_marginRight="20dp"
  101. android:layout_marginTop="7dp"
  102. android:background="@drawable/xunqu_login_etx_bg" >
  103. <ImageView
  104. android:id="@+id/xunqu_iv_user_pass"
  105. android:layout_width="18dp"
  106. android:layout_height="18dp"
  107. android:layout_alignParentLeft="true"
  108. android:layout_centerVertical="true"
  109. android:layout_marginLeft="10dp"
  110. android:src="@drawable/xunqu_icon_pass" />
  111. <EditText
  112. android:id="@+id/xunqu_etx_user_pass"
  113. android:layout_width="wrap_content"
  114. android:layout_height="30dp"
  115. android:layout_alignParentRight="true"
  116. android:layout_centerVertical="true"
  117. android:layout_marginLeft="10dp"
  118. android:layout_toRightOf="@+id/xunqu_iv_user_pass"
  119. android:background="#00000000"
  120. android:ems="10"
  121. android:inputType="textPassword"
  122. android:hint="请输入新密码"
  123. android:layout_marginRight="10dp"
  124. android:textColor="#1790C8"
  125. android:singleLine="true"
  126. android:textColorHint="#D0D0D0"
  127. android:maxLength="20"
  128. android:textSize="14dp" >
  129. </EditText>
  130. </RelativeLayout>
  131. </LinearLayout>
  132. <Button
  133. android:id="@+id/xunqu_btn_ok"
  134. android:layout_width="match_parent"
  135. android:layout_height="40dp"
  136. android:layout_marginTop="6dp"
  137. android:layout_marginBottom="10dp"
  138. android:layout_marginLeft="20dp"
  139. android:layout_marginRight="20dp"
  140. android:background="@drawable/xunqu_button_green"
  141. android:text="确定修改"
  142. android:textSize="17dp"
  143. android:textColor="#FFFFFF" />
  144. <RelativeLayout
  145. android:layout_width="match_parent"
  146. android:layout_height="match_parent"
  147. android:layout_marginBottom="10dp"
  148. android:layout_marginLeft="20dp"
  149. android:layout_marginRight="20dp" >
  150. <TextView
  151. android:id="@+id/xunqu_btn_user_login"
  152. android:layout_width="wrap_content"
  153. android:layout_height="wrap_content"
  154. android:layout_alignBaseline="@+id/xunqu_btn_signup"
  155. android:layout_alignBottom="@+id/xunqu_btn_signup"
  156. android:layout_alignParentRight="true"
  157. android:layout_marginRight="20dp"
  158. android:text="账号登录"
  159. android:textColor="@drawable/xunqu_textview_login_text"
  160. android:textSize="15dp" />
  161. <TextView
  162. android:id="@+id/xunqu_btn_signup"
  163. android:layout_width="wrap_content"
  164. android:layout_height="wrap_content"
  165. android:layout_alignParentLeft="true"
  166. android:layout_alignParentTop="true"
  167. android:layout_marginLeft="20dp"
  168. android:text="账号注册"
  169. android:textColor="@drawable/xunqu_textview_login_text"
  170. android:textSize="15dp" />
  171. </RelativeLayout>
  172. </LinearLayout>