qs_wk_login_register.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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:background="@color/qs_login_white"
  7. android:orientation="vertical">
  8. <ImageView
  9. android:id="@+id/qs_wk_iv_back"
  10. android:layout_width="20dp"
  11. android:layout_height="20dp"
  12. android:layout_marginStart="10dp"
  13. android:layout_marginLeft="10dp"
  14. android:layout_marginTop="10dp"
  15. android:src="@drawable/qs_wk_back_img" />
  16. <cn.qingshi.gamesdk.core.ui.EventEditText
  17. android:id="@+id/qs_wk_eet_account"
  18. android:layout_width="match_parent"
  19. android:layout_height="35dp"
  20. android:layout_marginLeft="20dp"
  21. android:layout_marginTop="20dp"
  22. android:layout_marginRight="20dp" />
  23. <cn.qingshi.gamesdk.core.ui.EventEditText
  24. android:id="@+id/qs_wk_eet_pwd"
  25. android:layout_width="match_parent"
  26. android:layout_height="35dp"
  27. android:layout_marginLeft="20dp"
  28. android:layout_marginTop="10dp"
  29. android:layout_marginRight="20dp" />
  30. <Button
  31. android:id="@+id/qs_wk_btn_register"
  32. style="?android:attr/borderlessButtonStyle"
  33. android:layout_width="match_parent"
  34. android:layout_height="35dp"
  35. android:layout_marginLeft="20dp"
  36. android:layout_marginTop="20dp"
  37. android:layout_marginRight="20dp"
  38. android:background="@drawable/qs_login_btn_blue_bg"
  39. android:text="注册"
  40. android:textAllCaps="false"
  41. android:textColor="@color/qs_login_white"
  42. android:textSize="16sp" />
  43. <LinearLayout
  44. android:layout_width="match_parent"
  45. android:layout_height="wrap_content"
  46. android:layout_marginLeft="20dp"
  47. android:layout_marginTop="10dp"
  48. android:layout_marginRight="20dp"
  49. android:layout_marginBottom="20dp">
  50. <TextView
  51. android:layout_width="wrap_content"
  52. android:layout_height="wrap_content"
  53. android:singleLine="true"
  54. android:text="注册即阅读并同意"
  55. android:textColor="@color/qs_login_black"
  56. android:textSize="12sp" />
  57. <TextView
  58. android:id="@+id/qs_wk_tv_protocol"
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:layout_marginLeft="2dp"
  62. android:singleLine="true"
  63. android:text="《用户服务协议及隐私政策》"
  64. android:textColor="@color/qs_login_blue"
  65. android:textSize="12sp" />
  66. </LinearLayout>
  67. </LinearLayout>