mine_about_sheishuo.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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:textColor="#5779ff"/>
  41. <TextView
  42. android:id="@+id/mine_about_law_TV"
  43. android:layout_width="wrap_content"
  44. android:layout_height="wrap_content"
  45. android:text="国家法律法规"
  46. android:textColor="#5779ff"
  47. android:layout_marginTop="16dp"/>
  48. </LinearLayout>
  49. <WebView
  50. android:id="@+id/mine_about_webview"
  51. android:layout_width="match_parent"
  52. android:layout_height="match_parent"/>
  53. </LinearLayout>