mine_about_sheishuo.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.shuishuo.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. </LinearLayout>
  43. <WebView
  44. android:id="@+id/mine_about_webview"
  45. android:layout_width="match_parent"
  46. android:layout_height="match_parent"/>
  47. </LinearLayout>