ss_setpwd.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:id="@+id/content_view"
  6. android:layout_width="@dimen/ss_login_width"
  7. android:layout_height="@dimen/ss_login_height_old"
  8. android:background="@drawable/ss_loginb"
  9. android:orientation="vertical" >
  10. <RelativeLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="80dp"
  13. android:orientation="vertical" >
  14. <ImageView
  15. android:id="@+id/back"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_centerVertical="true"
  19. android:layout_marginLeft="25dp"
  20. android:layout_marginTop="15dp"
  21. android:background="@drawable/ss_back" />
  22. <TextView
  23. android:layout_width="wrap_content"
  24. android:layout_height="40dp"
  25. android:layout_centerHorizontal="true"
  26. android:layout_centerVertical="true"
  27. android:layout_margin="5dp"
  28. android:layout_marginRight="25dp"
  29. android:layout_marginTop="10dp"
  30. android:padding="5sp"
  31. android:text="@string/ss_setpwd_text_title"
  32. android:textColor="@color/ss_font_black"
  33. android:textSize="20sp" />
  34. </RelativeLayout>
  35. <LinearLayout
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:paddingLeft="@dimen/ss_login_content_padding"
  39. android:paddingRight="@dimen/ss_login_content_padding"
  40. android:orientation="vertical">
  41. <LinearLayout
  42. android:layout_width="match_parent"
  43. android:layout_height="40dp"
  44. android:gravity="center_vertical"
  45. android:layout_marginTop="10dp"
  46. android:background="@drawable/ss_input_bg">
  47. <ImageView
  48. android:layout_width="wrap_content"
  49. android:layout_height="wrap_content"
  50. android:layout_marginLeft="20dp"
  51. android:src="@drawable/ss_account"/>
  52. <TextView
  53. android:id="@+id/tvmobile"
  54. android:layout_width="match_parent"
  55. android:layout_height="35dp"
  56. android:layout_marginLeft="13dp"
  57. android:background="@null"
  58. android:gravity="center_vertical"
  59. android:singleLine="true"
  60. android:textColor="#000000"
  61. android:textSize="16sp" >
  62. </TextView>
  63. </LinearLayout>
  64. <LinearLayout
  65. android:layout_width="match_parent"
  66. android:layout_height="40dp"
  67. android:gravity="center_vertical"
  68. android:layout_marginTop="10dp"
  69. android:background="@drawable/ss_input_bg">
  70. <ImageView
  71. android:layout_width="wrap_content"
  72. android:layout_height="wrap_content"
  73. android:layout_marginLeft="20dp"
  74. android:src="@drawable/ss_password"/>
  75. <EditText
  76. android:id="@+id/edit_pwd"
  77. android:layout_width="match_parent"
  78. android:layout_height="35dp"
  79. android:layout_marginLeft="13dp"
  80. android:background="@null"
  81. android:gravity="center_vertical"
  82. android:hint="@string/ss_user_edit_pwdhint"
  83. android:imeOptions="flagNoExtractUi|actionDone"
  84. android:inputType="textPassword"
  85. android:cursorVisible="true"
  86. android:textCursorDrawable="@null"
  87. android:maxLength="22"
  88. android:singleLine="true"
  89. android:textColor="#000000"
  90. android:textColorHint="#d5dad3"
  91. android:textSize="16sp" >
  92. </EditText>
  93. </LinearLayout>
  94. <Button
  95. android:id="@+id/iphonebtlg"
  96. android:layout_width="match_parent"
  97. android:layout_height="40dp"
  98. android:layout_marginTop="10dp"
  99. android:background="@drawable/ss_button"
  100. android:text="@string/ss_setuser_bt_msg"
  101. android:textColor="@color/ss_font_white"
  102. android:textSize="16sp" />
  103. <TextView
  104. android:id="@+id/service"
  105. android:layout_width="wrap_content"
  106. android:layout_height="25dp"
  107. android:layout_marginTop="5dp"
  108. tools:text="@string/ss_user_text_my"
  109. android:textColor="@color/ss_font_gray"
  110. android:textSize="16sp" />
  111. </LinearLayout>
  112. </LinearLayout>