jmsetpwd.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/linear"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:gravity="center"
  7. android:orientation="vertical" >
  8. <LinearLayout
  9. android:id="@+id/content_view"
  10. android:layout_width="@dimen/jm_login_width"
  11. android:layout_height="@dimen/jm_register_height_old"
  12. android:background="@drawable/jmloginb"
  13. android:orientation="vertical" >
  14. <RelativeLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="80dp"
  17. android:orientation="vertical" >
  18. <ImageView
  19. android:id="@+id/logo"
  20. android:layout_width="60dp"
  21. android:layout_height="60dp"
  22. android:layout_centerVertical="true"
  23. android:layout_marginLeft="25dp"
  24. android:layout_marginTop="15dp"
  25. android:background="@drawable/jm_logo" />
  26. <TextView
  27. android:layout_width="wrap_content"
  28. android:layout_height="40dp"
  29. android:layout_centerHorizontal="true"
  30. android:layout_centerVertical="true"
  31. android:layout_margin="5dp"
  32. android:layout_marginRight="25dp"
  33. android:layout_marginTop="10dp"
  34. android:padding="5sp"
  35. android:text="@string/setpwd_text_title"
  36. android:textColor="@color/jmfont_black"
  37. android:textSize="20sp" />
  38. </RelativeLayout>
  39. <LinearLayout
  40. android:layout_width="match_parent"
  41. android:layout_height="wrap_content"
  42. android:layout_gravity="center"
  43. android:layout_marginLeft="15dp"
  44. android:layout_marginRight="15dp"
  45. android:orientation="vertical" >
  46. <RelativeLayout
  47. android:layout_width="match_parent"
  48. android:layout_height="34dp" >
  49. <RelativeLayout
  50. android:id="@+id/iphoe_bg"
  51. android:layout_width="90dp"
  52. android:layout_height="wrap_content"
  53. android:layout_centerVertical="true"
  54. android:layout_margin="5dp" >
  55. <TextView
  56. android:id="@+id/usertv"
  57. android:layout_width="wrap_content"
  58. android:layout_height="wrap_content"
  59. android:layout_centerVertical="true"
  60. android:text="@string/setpwd_text_msg"
  61. android:textColor="@color/jmfont_black"
  62. android:textSize="16sp" />
  63. </RelativeLayout>
  64. <TextView
  65. android:layout_width="match_parent"
  66. android:layout_height="wrap_content"
  67. android:layout_centerVertical="true"
  68. android:layout_toRightOf="@+id/iphoe_bg"
  69. android:text="16889014567"
  70. android:id="@+id/tvmobile"
  71. android:textColor="@color/jmfont_black"
  72. android:textSize="16sp" >
  73. </TextView>
  74. </RelativeLayout>
  75. <View
  76. android:layout_width="match_parent"
  77. android:layout_height="1dp"
  78. android:layout_marginLeft="5dp"
  79. android:layout_marginRight="5dp"
  80. android:alpha="0.5"
  81. android:background="#d6d6d6" />
  82. </LinearLayout>
  83. <LinearLayout
  84. android:layout_width="match_parent"
  85. android:layout_height="wrap_content"
  86. android:layout_gravity="center"
  87. android:layout_marginLeft="15dp"
  88. android:layout_marginRight="15dp"
  89. android:layout_marginTop="10dp"
  90. android:orientation="vertical" >
  91. <RelativeLayout
  92. android:layout_width="wrap_content"
  93. android:layout_height="34dp" >
  94. <RelativeLayout
  95. android:id="@+id/pwr"
  96. android:layout_width="90dp"
  97. android:layout_height="wrap_content"
  98. android:layout_centerVertical="true"
  99. android:layout_margin="5dp" >
  100. <TextView
  101. android:id="@+id/pwdtv"
  102. android:layout_width="wrap_content"
  103. android:layout_height="wrap_content"
  104. android:layout_centerVertical="true"
  105. android:text="@string/user_text_pwd"
  106. android:textColor="@color/jmfont_black"
  107. android:textSize="16sp" />
  108. <ImageView
  109. android:layout_width="15dp"
  110. android:layout_height="15dp"
  111. android:layout_centerVertical="true"
  112. android:layout_marginLeft="5dp"
  113. android:layout_toRightOf="@+id/pwdtv"
  114. android:background="@drawable/jm_pwd" />
  115. </RelativeLayout>
  116. <EditText
  117. android:id="@+id/edit_pwd"
  118. android:layout_width="match_parent"
  119. android:layout_height="wrap_content"
  120. android:layout_centerVertical="true"
  121. android:layout_toRightOf="@+id/pwr"
  122. android:background="@null"
  123. android:gravity="center_vertical"
  124. android:hint="@string/user_edit_pwdhint"
  125. android:inputType="text"
  126. android:maxLength="22"
  127. android:singleLine="true"
  128. android:textColor="#000000"
  129. android:textColorHint="#d5dad3"
  130. android:imeOptions="actionDone"
  131. android:textSize="16sp" >
  132. </EditText>
  133. </RelativeLayout>
  134. <View
  135. android:layout_width="match_parent"
  136. android:layout_height="1dp"
  137. android:layout_marginLeft="5dp"
  138. android:layout_marginRight="5dp"
  139. android:alpha="0.5"
  140. android:background="#d6d6d6" />
  141. </LinearLayout>
  142. <LinearLayout
  143. android:layout_width="match_parent"
  144. android:layout_height="wrap_content"
  145. android:layout_gravity="center"
  146. android:layout_marginLeft="15dp"
  147. android:layout_marginRight="15dp"
  148. android:layout_marginTop="5dp"
  149. android:orientation="vertical" >
  150. <RelativeLayout
  151. android:layout_width="match_parent"
  152. android:layout_height="wrap_content"
  153. android:layout_marginTop="20dp" >
  154. <Button
  155. android:id="@+id/iphonebtlg"
  156. android:layout_width="match_parent"
  157. android:layout_height="46dp"
  158. android:background="@drawable/jmblues_btn_style"
  159. android:text="@string/setuser_bt_msg"
  160. android:textColor="@color/jmfont_white"
  161. android:textSize="18sp"/>
  162. </RelativeLayout>
  163. </LinearLayout>
  164. </LinearLayout>
  165. </LinearLayout>