jmsetuser_3.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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_login_height"
  12. android:paddingLeft="15dp"
  13. android:paddingRight="15dp"
  14. android:background="@drawable/jm_skin3_bg"
  15. android:orientation="vertical" >
  16. <RelativeLayout
  17. android:layout_width="match_parent"
  18. android:layout_height="@dimen/jm_login_top_height"
  19. android:orientation="vertical" >
  20. <ImageView
  21. android:id="@+id/logo"
  22. android:layout_width="@dimen/jm_login_logo_height"
  23. android:layout_height="@dimen/jm_login_logo_height"
  24. android:layout_centerVertical="true"
  25. android:scaleType="centerInside"
  26. android:src="@drawable/jm_logo_3" />
  27. <TextView
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:layout_centerHorizontal="true"
  31. android:layout_centerVertical="true"
  32. android:textColor="@color/jmfont_black"
  33. android:text="@string/setuser_text_title"
  34. android:textSize="16sp"/>
  35. </RelativeLayout>
  36. <LinearLayout
  37. android:layout_width="match_parent"
  38. android:layout_height="@dimen/jm_input_height"
  39. android:gravity="center_vertical"
  40. android:orientation="horizontal"
  41. android:background="@drawable/jm_skin3_input_bg">
  42. <TextView
  43. android:layout_width="wrap_content"
  44. android:layout_height="wrap_content"
  45. android:layout_marginLeft="8dp"
  46. android:layout_marginRight="8dp"
  47. android:textColor="@color/jmfont_gray"
  48. android:textSize="16sp"
  49. android:text="@string/user_text_msg"/>
  50. <EditText
  51. android:id="@+id/edit_user"
  52. android:layout_width="match_parent"
  53. android:layout_height="35dp"
  54. android:background="@null"
  55. android:enabled="false"
  56. android:gravity="center_vertical"
  57. android:hint="@string/user_edit_hint"
  58. android:inputType="text"
  59. android:textCursorDrawable="@null"
  60. android:maxLength="22"
  61. android:singleLine="true"
  62. android:textColor="#000000"
  63. android:textColorHint="#d5dad3"
  64. android:textSize="16sp" />
  65. </LinearLayout>
  66. <LinearLayout
  67. android:layout_width="match_parent"
  68. android:layout_height="@dimen/jm_input_height"
  69. android:layout_marginTop="10dp"
  70. android:gravity="center_vertical"
  71. android:orientation="horizontal"
  72. android:background="@drawable/jm_skin3_input_bg">
  73. <TextView
  74. android:layout_width="wrap_content"
  75. android:layout_height="wrap_content"
  76. android:layout_marginLeft="8dp"
  77. android:layout_marginRight="8dp"
  78. android:textColor="@color/jmfont_gray"
  79. android:textSize="16sp"
  80. android:text="@string/user_text_pwd"/>
  81. <EditText
  82. android:id="@+id/edit_pwd"
  83. android:enabled="false"
  84. android:layout_width="match_parent"
  85. android:layout_height="35dp"
  86. android:background="@null"
  87. android:gravity="center_vertical"
  88. android:hint="@string/user_edit_pwdhint"
  89. android:inputType="text"
  90. android:textCursorDrawable="@null"
  91. android:maxLength="22"
  92. android:singleLine="true"
  93. android:textColor="#000000"
  94. android:textColorHint="#d5dad3"
  95. android:textSize="16sp" >
  96. </EditText>
  97. </LinearLayout>
  98. <FrameLayout
  99. android:layout_width="match_parent"
  100. android:layout_height="wrap_content">
  101. <TextView
  102. android:id="@+id/btgetgame"
  103. android:layout_width="match_parent"
  104. android:layout_height="@dimen/jm_input_height"
  105. android:layout_marginTop="@dimen/jm_login_submit_margin_top"
  106. android:gravity="center"
  107. android:background="@drawable/jm_green_codebtn_style"
  108. android:text="@string/moblie_bt_login"
  109. android:textColor="@color/jmfont_white"
  110. android:textSize="18sp" />
  111. <TextView
  112. android:layout_width="wrap_content"
  113. android:layout_height="wrap_content"
  114. android:layout_marginTop="@dimen/jm_forget_text_margin_top"
  115. android:text="@string/setuser_text_tip"
  116. android:textColor="@color/jmfont_red"
  117. android:id="@+id/tvmsg"
  118. android:textSize="14sp" />
  119. </FrameLayout>
  120. </LinearLayout>
  121. </LinearLayout>