videoconfig.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:flatui="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@color/FFF7F7F7"
  7. android:scrollbars="none">
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:orientation="vertical">
  12. <include android:id="@+id/titlebar" layout="@layout/titlebar"/>
  13. <com.jsjty.jdc.app.widget.setting.SettingView
  14. android:id="@+id/app_setting"
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:paddingLeft="@dimen/space_5"
  18. android:paddingRight="@dimen/space_5"
  19. android:layout_marginBottom="20dp"
  20. flatui:iOSStyle="true" />
  21. <com.jsjty.jdc.app.widget.setting.SettingView
  22. android:id="@+id/video_setting"
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:paddingLeft="@dimen/space_5"
  26. android:paddingRight="@dimen/space_5"
  27. android:layout_marginBottom="20dp"
  28. flatui:iOSStyle="true" />
  29. </LinearLayout>
  30. </ScrollView>