act_setting.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/white_light"
  6. android:orientation="vertical">
  7. <include layout="@layout/title" />
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:layout_marginBottom="@dimen/content_padding_15"
  12. android:layout_marginEnd="@dimen/content_padding"
  13. android:layout_marginStart="@dimen/content_padding"
  14. android:layout_marginTop="@dimen/content_padding"
  15. android:background="@drawable/x_shap_shadow_bg_rectgangle_white"
  16. android:orientation="vertical">
  17. <LinearLayout
  18. android:id="@+id/abourt_us_layout"
  19. style="@style/style_item_container">
  20. <TextView
  21. style="@style/style_item_label"
  22. android:text="关于我们" />
  23. <TextView style="@style/style_item_end_next" />
  24. </LinearLayout>
  25. <View style="@style/style_item_line" />
  26. <LinearLayout
  27. android:id="@+id/change_layout"
  28. style="@style/style_item_container">
  29. <TextView
  30. style="@style/style_item_label"
  31. android:text="新版本介绍" />
  32. <TextView style="@style/style_item_end_next" />
  33. </LinearLayout>
  34. <View style="@style/style_item_line" />
  35. <LinearLayout
  36. android:id="@+id/clear_layout"
  37. style="@style/style_item_container">
  38. <TextView
  39. style="@style/style_item_label"
  40. android:text="清除缓存" />
  41. <TextView
  42. android:id="@+id/clear_item_tv"
  43. style="@style/style_item_end"
  44. android:text="128MB" />
  45. </LinearLayout>
  46. </LinearLayout>
  47. <TextView
  48. android:id="@+id/tv_submit"
  49. style="@style/style_button"
  50. android:text="退出登录" />
  51. </LinearLayout>