hnyy_login_account_launcher.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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="wrap_content"
  5. android:layout_gravity="center"
  6. android:layout_marginLeft="10dp"
  7. android:layout_marginRight="10dp"
  8. android:background="@drawable/hnyy_container_white_bg"
  9. android:orientation="vertical">
  10. <TextView
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_marginLeft="20dp"
  14. android:layout_marginTop="10dp"
  15. android:layout_marginRight="20dp"
  16. android:gravity="center_horizontal"
  17. android:text="@string/hnyy_login_account_panel_title"
  18. android:textColor="@color/hnyy_color_purple"
  19. android:textSize="20sp"
  20. android:textStyle="bold" />
  21. <com.yyrh.ui.widget.EventEditText
  22. android:id="@+id/hnyy_eet_account"
  23. android:layout_width="match_parent"
  24. android:layout_height="35dp"
  25. android:layout_marginLeft="20dp"
  26. android:layout_marginTop="10dp"
  27. android:layout_marginRight="20dp" />
  28. <com.yyrh.ui.widget.EventEditText
  29. android:id="@+id/hnyy_eet_pwd"
  30. android:layout_width="match_parent"
  31. android:layout_height="35dp"
  32. android:layout_marginLeft="20dp"
  33. android:layout_marginTop="10dp"
  34. android:layout_marginRight="20dp" />
  35. <Button
  36. android:id="@+id/hnyy_btn_launcher"
  37. style="?android:attr/borderlessButtonStyle"
  38. android:layout_width="match_parent"
  39. android:layout_height="35dp"
  40. android:layout_marginLeft="20dp"
  41. android:layout_marginTop="15dp"
  42. android:layout_marginRight="20dp"
  43. android:background="@drawable/hnyy_btn_purple_bg"
  44. android:text="@string/hnyy_login_btn_launcher_desc"
  45. android:textColor="@color/hnyy_color_white"
  46. android:textSize="16sp" />
  47. <Button
  48. android:id="@+id/hnyy_btn_quick_register"
  49. style="?android:attr/borderlessButtonStyle"
  50. android:layout_width="match_parent"
  51. android:layout_height="35dp"
  52. android:layout_marginLeft="20dp"
  53. android:layout_marginTop="5dp"
  54. android:layout_marginRight="20dp"
  55. android:background="@drawable/hnyy_btn_white_bg"
  56. android:text="@string/hnyy_login_btn_quick_register_desc"
  57. android:textColor="@color/hnyy_color_purple"
  58. android:textSize="16sp" />
  59. <LinearLayout
  60. android:layout_width="match_parent"
  61. android:layout_height="20dp"
  62. android:layout_marginLeft="20dp"
  63. android:layout_marginTop="20dp"
  64. android:layout_marginRight="20dp"
  65. android:layout_marginBottom="10dp"
  66. android:gravity="center_horizontal"
  67. android:orientation="horizontal">
  68. <ImageView
  69. android:id="@+id/hnyy_iv_check"
  70. android:layout_width="13dp"
  71. android:layout_height="13dp"
  72. android:layout_gravity="center"
  73. android:src="@drawable/hnyy_uncheck_img" />
  74. <TextView
  75. android:layout_width="wrap_content"
  76. android:layout_height="match_parent"
  77. android:layout_gravity="center"
  78. android:layout_marginLeft="5dp"
  79. android:gravity="center_vertical"
  80. android:text="我已阅读并同意及"
  81. android:textColor="@color/hnyy_color_gray"
  82. android:textSize="11sp" />
  83. <TextView
  84. android:id="@+id/hnyy_tv_agreement"
  85. android:layout_width="wrap_content"
  86. android:layout_height="match_parent"
  87. android:layout_gravity="center"
  88. android:gravity="center_vertical"
  89. android:text="《用户服务协议》"
  90. android:textColor="@color/hnyy_color_red"
  91. android:textSize="11sp" />
  92. <TextView
  93. android:layout_width="wrap_content"
  94. android:layout_height="match_parent"
  95. android:layout_gravity="center"
  96. android:gravity="center_vertical"
  97. android:text="及"
  98. android:textColor="@color/hnyy_color_gray"
  99. android:textSize="11sp" />
  100. <TextView
  101. android:id="@+id/hnyy_tv_privacy"
  102. android:layout_width="wrap_content"
  103. android:layout_height="match_parent"
  104. android:layout_gravity="center"
  105. android:gravity="center_vertical"
  106. android:text="《隐私政策》"
  107. android:textColor="@color/hnyy_color_red"
  108. android:textSize="11sp" />
  109. </LinearLayout>
  110. </LinearLayout>