jmsetuser.xml 7.6 KB

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