act_setting.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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/clear_layout"
  28. style="@style/style_item_container">
  29. <TextView
  30. style="@style/style_item_label"
  31. android:text="清除缓存" />
  32. <TextView
  33. android:id="@+id/clear_item_tv"
  34. style="@style/style_item_end"
  35. android:text="128MB" />
  36. </LinearLayout>
  37. </LinearLayout>
  38. <TextView
  39. android:id="@+id/tv_submit"
  40. style="@style/style_button"
  41. android:text="退出登录" />
  42. </LinearLayout>