qs_qc_login_choose_type.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. <LinearLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_marginTop="30dp"
  14. android:layout_marginBottom="20dp"
  15. android:orientation="horizontal">
  16. <ImageView
  17. android:id="@+id/qs_qc_iv_mobile"
  18. android:layout_width="0dp"
  19. android:layout_height="wrap_content"
  20. android:layout_weight="1"
  21. android:src="@drawable/qs_qc_mobile_img" />
  22. <ImageView
  23. android:id="@+id/qs_qc_iv_account"
  24. android:layout_width="0dp"
  25. android:layout_height="wrap_content"
  26. android:layout_weight="1"
  27. android:src="@drawable/qs_qc_account_img" />
  28. <ImageView
  29. android:id="@+id/qs_qc_iv_guest"
  30. android:layout_width="0dp"
  31. android:layout_height="wrap_content"
  32. android:layout_weight="1"
  33. android:src="@drawable/qs_qc_guest_img" />
  34. </LinearLayout>
  35. <LinearLayout
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:layout_marginLeft="20dp"
  39. android:layout_marginRight="20dp"
  40. android:layout_marginBottom="20dp"
  41. android:gravity="center"
  42. android:orientation="horizontal">
  43. <ImageView
  44. android:id="@+id/qs_qc_iv_check"
  45. android:layout_width="16dp"
  46. android:layout_height="16dp"
  47. android:src="@drawable/qs_qc_uncheck_img" />
  48. <TextView
  49. android:layout_width="wrap_content"
  50. android:layout_height="wrap_content"
  51. android:layout_marginLeft="5dp"
  52. android:text="我已阅读并同意"
  53. android:textColor="@color/qs_login_gray"
  54. android:textSize="14sp" />
  55. <TextView
  56. android:id="@+id/qs_qc_tv_agreement"
  57. android:layout_width="wrap_content"
  58. android:layout_height="wrap_content"
  59. android:text="《用户服务协议》"
  60. android:textColor="@color/qs_login_red"
  61. android:textSize="14sp" />
  62. </LinearLayout>
  63. </LinearLayout>