jmsetuser_new.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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_login_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_width"
  23. android:layout_height="@dimen/jm_login_logo_height"
  24. android:layout_centerVertical="true"
  25. android:scaleType="centerInside"
  26. android:src="@drawable/jm_logo_new" />
  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_input_bg">
  42. <ImageView
  43. android:layout_width="@dimen/jm_login_icon_width"
  44. android:layout_height="@dimen/jm_login_icon_height"
  45. android:layout_marginLeft="10dp"
  46. android:layout_marginRight="10dp"
  47. android:scaleType="centerInside"
  48. android:src="@drawable/jm_account" />
  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:textCursorDrawable="@null"
  59. android:maxLength="22"
  60. android:singleLine="true"
  61. android:textColor="#000000"
  62. android:textColorHint="#d5dad3"
  63. android:textSize="16sp" />
  64. </LinearLayout>
  65. <LinearLayout
  66. android:layout_width="match_parent"
  67. android:layout_height="@dimen/jm_input_height"
  68. android:layout_marginTop="10dp"
  69. android:gravity="center_vertical"
  70. android:orientation="horizontal"
  71. android:background="@drawable/jm_input_bg">
  72. <ImageView
  73. android:layout_width="@dimen/jm_login_icon_width"
  74. android:layout_height="@dimen/jm_login_icon_height"
  75. android:layout_marginLeft="10dp"
  76. android:layout_marginRight="10dp"
  77. android:scaleType="centerInside"
  78. android:src="@drawable/jm_password" />
  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:textCursorDrawable="@null"
  89. android:maxLength="22"
  90. android:singleLine="true"
  91. android:textColor="#000000"
  92. android:textColorHint="#d5dad3"
  93. android:textSize="16sp" >
  94. </EditText>
  95. </LinearLayout>
  96. <FrameLayout
  97. android:layout_width="match_parent"
  98. android:layout_height="wrap_content">
  99. <TextView
  100. android:id="@+id/btgetgame"
  101. android:layout_width="match_parent"
  102. android:layout_height="@dimen/jm_input_height"
  103. android:layout_marginTop="@dimen/jm_login_submit_margin_top"
  104. android:gravity="center"
  105. android:background="@drawable/jm_blues_codebtn_style_new"
  106. android:text="@string/moblie_bt_login"
  107. android:textColor="@color/jmfont_white"
  108. android:textSize="18sp" />
  109. <TextView
  110. android:layout_width="wrap_content"
  111. android:layout_height="wrap_content"
  112. android:layout_marginTop="@dimen/jm_forget_text_margin_top"
  113. android:text="@string/setuser_text_tip"
  114. android:textColor="@color/jmfont_red"
  115. android:id="@+id/tvmsg"
  116. android:textSize="14sp" />
  117. </FrameLayout>
  118. </LinearLayout>
  119. </LinearLayout>