qs_wk_login_account.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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_login"
  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:text="没有账号?"
  54. android:textColor="@color/qs_login_black" />
  55. <TextView
  56. android:id="@+id/qs_wk_tv_register"
  57. android:layout_width="0dp"
  58. android:layout_height="wrap_content"
  59. android:layout_marginLeft="5dp"
  60. android:layout_weight="1"
  61. android:text="立即注册"
  62. android:textColor="@color/qs_login_blue" />
  63. <TextView
  64. android:id="@+id/qs_wk_tv_forget"
  65. android:layout_width="wrap_content"
  66. android:layout_height="wrap_content"
  67. android:text="忘记密码"
  68. android:textColor="@color/qs_login_blue" />
  69. </LinearLayout>
  70. </LinearLayout>