Как сделать вкладки в деятельности, которая также имеет боковую панель навигации в Android?
У меня есть активность с боковой панелью навигации. Теперь я хочу добавить вкладки в той же деятельности. Как добавить вкладки вместе с боковой навигационной панелью?
1 ответ
Создайте еще один XML-файл и добавьте это имя в acitivty_viewpager.
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/orange"
app:tabMode="scrollable" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
и включите этот файл в свою деятельность, как
<include layout="@layout/acitivty_viewpager"/>