Как добавить видовой пейджер между AppBarLayout и нижней панелью навигации в Andorid Studio? - PullRequest
0 голосов
/ 04 апреля 2020

Что я сделал: Изначально я использовал LinearLayout и внутри него я поместил AppBar, ViewPager, а затем Bottom Navigation Bar, но я не смог выровнять указанные 3 компонента по вертикали. Поэтому я использовал FrameLayout как упомянуто ниже. Так что я смог визуализировать все 3 компонента, но ViewPager появляется на весь экран.

<?xmlversion="1.0"encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayoutxmlns: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:id="@+id/drawer_mainlayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity"
tools:openDrawer="start">

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
app:popupTheme="@style/AppTheme.AppBarOverlay"/>
</com.google.android.material.appbar.AppBarLayout>

<androidx.viewpager.widget.ViewPager
android:id="@+id/view_pager"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior"

/>

<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_nav"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="?android:attr/windowBackground"
app:menu="@menu/bottomnav"/>

</FrameLayout>

<com.google.android.material.navigation.NavigationView
android:id="@+id/navdrawer_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/navheader"
app:menu="@menu/menu"/>

</androidx.drawerlayout.widget.DrawerLayout>

То, что я ищу: Я хочу расположить первую панель приложений, следующий вид пейджера и последнюю панель BottomNavigation (ViewPager между двумя полосами). Смысл разделить их на три части. Теперь содержимое окна просмотра покрыто верхней и нижней полосами.

Буду очень признателен за любые предложения по этому вопросу. Спасибо!

...