hnyy_privacy_policy_dialog.xml 2.6 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="360dp"
  4. android:layout_height="280dp"
  5. android:background="@drawable/hnyy_color_white_70"
  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/hnyy_transparent"
  23. />
  24. <ImageView
  25. android:layout_width="30dp"
  26. android:layout_height="30dp"
  27. android:layout_centerInParent="true"
  28. android:id="@+id/hnyy_loading"
  29. android:background="@mipmap/hnyy_loading"/>
  30. </RelativeLayout>
  31. <LinearLayout
  32. android:layout_width="match_parent"
  33. android:layout_height="0dp"
  34. android:layout_weight="3"
  35. android:orientation="horizontal"
  36. >
  37. <View
  38. android:layout_width="0dp"
  39. android:layout_height="match_parent"
  40. android:layout_weight="1"
  41. />
  42. <Button
  43. android:id="@+id/btn_disagree"
  44. android:layout_width="0dp"
  45. android:layout_height="30dp"
  46. android:layout_weight="2"
  47. android:layout_gravity="center"
  48. android:text="@string/hnyy_disagreement"
  49. android:textColor="@color/hnyy_text_cyan_color"
  50. android:background="@drawable/hnyy_btn_exit_bg"/>
  51. <View
  52. android:layout_width="0dp"
  53. android:layout_height="match_parent"
  54. android:layout_weight="1"
  55. />
  56. <View
  57. android:layout_width="0dp"
  58. android:layout_height="match_parent"
  59. android:layout_weight="1"
  60. />
  61. <Button
  62. android:id="@+id/btn_agree"
  63. android:layout_width="0dp"
  64. android:layout_height="30dp"
  65. android:layout_weight="2"
  66. android:layout_gravity="center"
  67. android:background="@drawable/hnyy_login_button_style"
  68. android:textColor="@color/hnyy_white"
  69. android:text="@string/hnyy_agreement"/>
  70. <View
  71. android:layout_width="0dp"
  72. android:layout_height="match_parent"
  73. android:layout_weight="1"
  74. />
  75. </LinearLayout>
  76. </LinearLayout>