123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:orientation="vertical"
- tools:context="com.zhong.inspection.ui.SafetyTrainingActivity">
- <include
- android:id="@+id/tool_bar"
- layout="@layout/title_toolbar" />
- <com.google.android.material.tabs.TabLayout
- android:id="@+id/tab_view"
- android:layout_width="wrap_content"
- android:layout_height="50dp"
- android:layout_alignParentTop="true"
- app:tabIndicatorColor="@color/purple_fa"
- app:tabSelectedTextColor="@color/purple_fa"/>
- <com.zhong.inspection.widget.SwipeViewPager
- android:layout_marginTop="10dp"
- android:id="@+id/swipe_pager_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </LinearLayout>
|