fragment_waybill.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layout xmlns:android="http://schemas.android.com/apk/res/android" >
  3. <data >
  4. </data >
  5. <LinearLayout
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:background="@color/color_page_bg"
  9. android:orientation="vertical" >
  10. <FrameLayout
  11. android:id="@+id/lay_container"
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent" >
  14. <com.qmuiteam.qmui.widget.tab.QMUITabSegment
  15. android:id="@+id/tabs"
  16. android:layout_width="match_parent"
  17. android:layout_height="@dimen/title_bar_height"
  18. android:background="@color/white"
  19. android:textSize="12sp" />
  20. <View
  21. android:layout_width="match_parent"
  22. android:layout_height="8dp"
  23. android:layout_marginTop="@dimen/title_bar_height"
  24. android:background="@color/color_page" />
  25. <com.qmuiteam.qmui.widget.QMUIViewPager
  26. android:id="@+id/view_pager"
  27. android:layout_width="match_parent"
  28. android:layout_height="match_parent"
  29. android:layout_marginTop="58dp" />
  30. </FrameLayout >
  31. </LinearLayout >
  32. </layout >