qs_qc_login_register.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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="20dp"
  7. android:layout_marginRight="20dp"
  8. android:background="@drawable/qs_qc_login_container_bg"
  9. android:orientation="vertical">
  10. <ImageView
  11. android:id="@+id/qs_qc_iv_return"
  12. android:layout_width="10dp"
  13. android:layout_height="15dp"
  14. android:layout_marginLeft="20dp"
  15. android:layout_marginTop="10dp"
  16. android:src="@drawable/qs_qc_return_img" />
  17. <ImageView
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_gravity="center_horizontal"
  21. android:src="@drawable/qs_qc_register_title_img" />
  22. <cn.qingshi.gamesdk.core.ui.EventEditText
  23. android:id="@+id/qs_qc_eet_account"
  24. android:layout_width="match_parent"
  25. android:layout_height="40dp"
  26. android:layout_marginLeft="20dp"
  27. android:layout_marginTop="10dp"
  28. android:layout_marginRight="20dp" />
  29. <cn.qingshi.gamesdk.core.ui.EventEditText
  30. android:id="@+id/qs_qc_eet_pwd"
  31. android:layout_width="match_parent"
  32. android:layout_height="40dp"
  33. android:layout_marginLeft="20dp"
  34. android:layout_marginTop="10dp"
  35. android:layout_marginRight="20dp" />
  36. <Button
  37. android:id="@+id/qs_qc_btn_register"
  38. style="?android:attr/borderlessButtonStyle"
  39. android:layout_width="match_parent"
  40. android:layout_height="40dp"
  41. android:layout_marginLeft="20dp"
  42. android:layout_marginTop="20dp"
  43. android:layout_marginRight="20dp"
  44. android:layout_marginBottom="20dp"
  45. android:background="@drawable/qs_qc_btn_pink_bg"
  46. android:text="注册"
  47. android:textAllCaps="false"
  48. android:textColor="@color/qs_login_white"
  49. android:textSize="16sp" />
  50. </LinearLayout>