activity_label_management.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. android:background="@color/white"
  9. tools:context="com.zhong.inspection.ui.LabelManagementActivity">
  10. <include
  11. android:id="@+id/tool_bar"
  12. layout="@layout/title_toolbar" />
  13. <com.google.android.material.tabs.TabLayout
  14. android:id="@+id/tab_view"
  15. android:layout_width="wrap_content"
  16. android:layout_height="50dp"
  17. app:tabIndicatorColor="@color/purple_fa"
  18. app:tabMode="auto"
  19. app:tabMinWidth="0dp"
  20. app:tabSelectedTextColor="@color/purple_fa"/>
  21. <com.zhong.inspection.widget.SwipeViewPager
  22. android:layout_marginTop="10dp"
  23. android:id="@+id/swipe_pager_view"
  24. android:layout_width="match_parent"
  25. android:layout_height="match_parent" />
  26. </LinearLayout>