jm_account_register_8.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <RelativeLayout
  6. android:layout_width="@dimen/jm_login_width_8"
  7. android:layout_height="@dimen/jm_login_height_8"
  8. android:background="@color/jmfont_white">
  9. <Button
  10. android:id="@+id/btn_reback"
  11. android:layout_width="@dimen/jm_login_icon_width"
  12. android:layout_height="@dimen/jm_login_icon_width"
  13. android:layout_marginLeft="@dimen/jm_reback_margin"
  14. android:layout_marginTop="@dimen/jm_reback_margin"
  15. android:background="@drawable/jm_reback"/>
  16. <EditText
  17. android:id="@+id/et_input_account"
  18. android:layout_width="320dp"
  19. android:layout_height="36dp"
  20. android:layout_below="@id/btn_reback"
  21. android:layout_centerHorizontal="true"
  22. android:layout_marginTop="18dp"
  23. android:background="@drawable/jm_input_bg_8"
  24. android:digits="0123456789abcdefghijgklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.*@#¥%"
  25. android:drawablePadding="10dp"
  26. android:gravity="center_vertical"
  27. android:hint="请输入账号"
  28. android:imeOptions="flagNoExtractUi"
  29. android:maxLength="20"
  30. android:paddingLeft="10dp"
  31. android:textColor="@color/jmfont_gray"
  32. android:textSize="13sp"/>
  33. <EditText
  34. android:id="@+id/et_input_pwd"
  35. android:layout_width="320dp"
  36. android:layout_height="36dp"
  37. android:layout_below="@id/et_input_account"
  38. android:layout_centerHorizontal="true"
  39. android:layout_marginTop="15dp"
  40. android:background="@drawable/jm_input_bg_8"
  41. android:digits="0123456789abcdefghijgklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.*@#¥%"
  42. android:drawablePadding="10dp"
  43. android:gravity="center_vertical"
  44. android:hint="请输入密码"
  45. android:imeOptions="flagNoExtractUi"
  46. android:maxLength="20"
  47. android:paddingLeft="10dp"
  48. android:textColor="@color/jmfont_gray"
  49. android:textSize="13sp"/>
  50. <ImageView
  51. android:id="@+id/iv_down_eye_btn"
  52. android:layout_width="30dp"
  53. android:layout_height="match_parent"
  54. android:layout_alignRight="@+id/et_input_pwd"
  55. android:layout_centerInParent="true"
  56. android:layout_centerHorizontal="true"
  57. android:paddingRight="10dp"
  58. android:src="@drawable/jm_close_eye"/>
  59. <Button
  60. android:id="@+id/btn_register"
  61. android:layout_width="320dp"
  62. android:layout_height="36dp"
  63. android:layout_below="@id/et_input_pwd"
  64. android:layout_centerHorizontal="true"
  65. android:layout_marginTop="16dp"
  66. android:background="@color/jmfont_fonts_blues"
  67. android:text="注册"
  68. android:textColor="@color/jmfont_white"/>
  69. <ImageView
  70. android:id="@+id/iv_check"
  71. android:layout_width="14dp"
  72. android:layout_height="14dp"
  73. android:layout_below="@id/btn_register"
  74. android:layout_alignLeft="@id/btn_register"
  75. android:layout_marginTop="18dp"
  76. android:layout_marginRight="5dp"
  77. android:background="@drawable/jm_uncheck"/>
  78. <TextView
  79. android:id="@+id/tv_no_account"
  80. android:layout_width="wrap_content"
  81. android:layout_height="wrap_content"
  82. android:layout_below="@id/btn_register"
  83. android:layout_marginTop="16dp"
  84. android:layout_toRightOf="@id/iv_check"
  85. android:text="注册即阅读并同意"
  86. android:textColor="@color/jmfont_black"/>
  87. <TextView
  88. android:id="@+id/tv_register_account"
  89. android:layout_width="wrap_content"
  90. android:layout_height="wrap_content"
  91. android:layout_below="@id/btn_register"
  92. android:layout_marginTop="16dp"
  93. android:layout_toRightOf="@id/tv_no_account"
  94. android:text="《用户服务协议及隐私政策》"
  95. android:textColor="@color/jmfont_fonts_blues"/>
  96. </RelativeLayout>
  97. </LinearLayout>