yyxx_comm_privacy_dialog.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="360dp"
  4. android:layout_height="280dp"
  5. android:background="@color/yyxx_comm_white"
  6. android:orientation="vertical"
  7. android:id="@+id/ll_private_policy"
  8. >
  9. <RelativeLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="0dp"
  12. android:layout_weight="7"
  13. android:layout_marginTop="10dp"
  14. android:layout_marginLeft="2dp"
  15. android:layout_marginRight="2dp"
  16. >
  17. <WebView
  18. android:id="@+id/wb_user_info"
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent"
  21. android:layout_gravity="center"
  22. android:background="@color/yyxx_comm_transparent" />
  23. </RelativeLayout>
  24. <LinearLayout
  25. android:layout_width="match_parent"
  26. android:layout_height="0dp"
  27. android:layout_weight="3"
  28. android:orientation="horizontal"
  29. >
  30. <View
  31. android:layout_width="0dp"
  32. android:layout_height="match_parent"
  33. android:layout_weight="1"
  34. />
  35. <Button
  36. android:id="@+id/btn_disagree"
  37. android:layout_width="0dp"
  38. android:layout_height="30dp"
  39. android:layout_weight="2"
  40. android:layout_gravity="center"
  41. android:text="@string/yyxx_comm_disagreement"
  42. android:textColor="@color/yyxx_comm_text_cyan"
  43. android:background="@drawable/yyxx_btn_exit_bg"/>
  44. <View
  45. android:layout_width="0dp"
  46. android:layout_height="match_parent"
  47. android:layout_weight="1"
  48. />
  49. <View
  50. android:layout_width="0dp"
  51. android:layout_height="match_parent"
  52. android:layout_weight="1"
  53. />
  54. <Button
  55. android:id="@+id/btn_agree"
  56. android:layout_width="0dp"
  57. android:layout_height="30dp"
  58. android:layout_weight="2"
  59. android:layout_gravity="center"
  60. android:background="@drawable/yyxx_comm_confirm_button_style"
  61. android:textColor="@color/yyxx_comm_white"
  62. android:text="@string/yyxx_comm_agreement"/>
  63. <View
  64. android:layout_width="0dp"
  65. android:layout_height="match_parent"
  66. android:layout_weight="1"
  67. />
  68. </LinearLayout>
  69. </LinearLayout>