mine_about_sheishuo.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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:background="@color/grey_light_light_light">
  8. <android.support.design.widget.AppBarLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content">
  11. <com.sheishuo.app.common.views.BaseToolbar
  12. android:id="@id/toolbar"
  13. android:layout_width="match_parent"
  14. android:layout_height="@dimen/action_bar_height"
  15. app:title="关于谁说"
  16. app:left_text="返回"/>
  17. </android.support.design.widget.AppBarLayout>
  18. <LinearLayout
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:padding="16dp"
  22. android:gravity="center"
  23. android:orientation="vertical"
  24. android:background="@color/white">
  25. <ImageView
  26. android:layout_width="96dp"
  27. android:layout_height="96dp"
  28. android:src="@drawable/logo"/>
  29. <TextView
  30. android:id="@+id/mine_about_version_TV"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:text="版本号:v1.0.0"
  34. android:padding="16dp"/>
  35. <TextView
  36. android:id="@+id/mine_about_agreement_TV"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:text="谁说用户协议"
  40. android:visibility="gone"
  41. android:textColor="#5779ff"/>
  42. <TextView
  43. android:id="@+id/mine_about_law_TV"
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. android:text="国家法律法规"
  47. android:textColor="#5779ff"
  48. android:layout_marginTop="16dp"/>
  49. </LinearLayout>
  50. <WebView
  51. android:id="@+id/mine_about_webview"
  52. android:layout_width="match_parent"
  53. android:layout_height="match_parent"/>
  54. </LinearLayout>