jmsetuser.xml 8.4 KB

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