mine_about_webview_activity.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:orientation="vertical"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <android.support.design.widget.AppBarLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content">
  10. <com.sheishuo.app.common.views.BaseToolbar
  11. android:id="@+id/toolbar"
  12. android:layout_width="match_parent"
  13. android:layout_height="@dimen/action_bar_height"
  14. style="@style/fullToolbarStyle"/>
  15. </android.support.design.widget.AppBarLayout>
  16. <WebView
  17. android:id="@+id/mine_about_webview"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:layout_weight="9"/>
  21. <LinearLayout
  22. android:id="@+id/mine_about_webview_agreement_layout"
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:orientation="vertical"
  26. android:visibility="gone">
  27. <LinearLayout
  28. android:layout_width="match_parent"
  29. android:layout_height="match_parent"
  30. android:layout_gravity="center"
  31. android:layout_marginTop="15dp"
  32. android:orientation="horizontal">
  33. <RadioButton
  34. android:id="@+id/agree_radio"
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:checked="true"
  38. android:text="我已阅读并同意以上规定"
  39. android:textColor="@color/color_grey_666666"
  40. android:textColorLink="@color/color_green_00ae8c"
  41. app:buttonTint="@color/color_green_00ae8c" />
  42. </LinearLayout>
  43. <LinearLayout
  44. android:layout_width="match_parent"
  45. android:layout_height="wrap_content"
  46. android:orientation="horizontal">
  47. <Button
  48. android:id="@+id/mine_about_webview_reject"
  49. android:layout_width="0dp"
  50. android:layout_height="wrap_content"
  51. android:layout_margin="8dp"
  52. android:layout_weight="1"
  53. android:background="@drawable/btn1_selector"
  54. android:text="取消"
  55. android:textColor="@color/white" />
  56. <Button
  57. android:id="@+id/mine_about_webview_agree"
  58. android:layout_width="0dp"
  59. android:layout_height="wrap_content"
  60. android:layout_margin="8dp"
  61. android:layout_weight="1"
  62. android:background="@drawable/btn1_selector"
  63. android:text="实名认证"
  64. android:textColor="@color/white" />
  65. </LinearLayout>
  66. </LinearLayout>
  67. </LinearLayout>