jmsetuser_3.xml 5.2 KB

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