android 如何在工具栏下方显示 ViewPager
How to show ViewPager below of Toolbar in android
我想在我的应用程序中显示一些 Fragments
,为此我想显示 viewPager
和 BottomNavigation
。
我想在 Toolbar
下面显示这个 viewPager
,我写了下面的代码,但我不工作,不显示 toolbar
!
主页代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
tools:context="in.nouri.sevenwatchlist.Activities.MainActivity">
<include
android:id="@+id/mainToolbar"
layout="@layout/toolbar_main" />
<com.aurelhubert.ahbottomnavigation.AHBottomNavigationViewPager
android:id="@+id/mainViewPager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/mainBottomNavigation"
android:layout_alignParentTop="true"
android:layout_below="@+id/mainToolbar"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<com.aurelhubert.ahbottomnavigation.AHBottomNavigation
android:id="@+id/mainBottomNavigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
app:selectedBackgroundVisible="false" />
</RelativeLayout>
我将此代码用于 viewPager
、app:layout_behavior="@string/appbar_scrolling_view_behavior"
但我不再工作了!
我该如何解决?请帮助我
从 viewpager 中删除关注 属性 并检查
android:layout_alignParentTop="true"
我想在我的应用程序中显示一些 Fragments
,为此我想显示 viewPager
和 BottomNavigation
。
我想在 Toolbar
下面显示这个 viewPager
,我写了下面的代码,但我不工作,不显示 toolbar
!
主页代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
tools:context="in.nouri.sevenwatchlist.Activities.MainActivity">
<include
android:id="@+id/mainToolbar"
layout="@layout/toolbar_main" />
<com.aurelhubert.ahbottomnavigation.AHBottomNavigationViewPager
android:id="@+id/mainViewPager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/mainBottomNavigation"
android:layout_alignParentTop="true"
android:layout_below="@+id/mainToolbar"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<com.aurelhubert.ahbottomnavigation.AHBottomNavigation
android:id="@+id/mainBottomNavigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
app:selectedBackgroundVisible="false" />
</RelativeLayout>
我将此代码用于 viewPager
、app:layout_behavior="@string/appbar_scrolling_view_behavior"
但我不再工作了!
我该如何解决?请帮助我
从 viewpager 中删除关注 属性 并检查
android:layout_alignParentTop="true"