gpt4 book ai didi

android - 如何在 Android 中显示 BottomNavigation CoordinatorLayout

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:10:17 25 4
gpt4 key购买 nike

在我的应用程序中,我想显示 CoordinatorLayoutBottomNavigation 底部,为此我编写了以下代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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:fitsSystemWindows="true"
>

<android.support.design.widget.AppBarLayout
android:id="@+id/main.appbar"
android:layout_width="match_parent"
android:layout_height="150dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/main.collapsing"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">


<include
android:id="@+id/mainToolbar"
layout="@layout/toolbar_main" />

</android.support.design.widget.CollapsingToolbarLayout>

</android.support.design.widget.AppBarLayout>


<com.aurelhubert.ahbottomnavigation.AHBottomNavigationViewPager
android:id="@+id/mainViewPager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/mainBottomNavigation"
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"
app:layout_anchorGravity="bottom"
app:selectedBackgroundVisible="true" />

</android.support.design.widget.CoordinatorLayout>

但是当运行应用程序时,会显示 CoordinatorLayoutBottomNavigation 顶部!

如何显示 CoordinatorLayoutBottomNavigation 底部?

最佳答案

我希望答案还不算太晚。我只是遇到了同样的问题,我使用了 android:layout_gravity="bottom"。我有一个工具栏、一个 BottomNavigationView,在中间,我有一个用作 fragment 占位符的 FrameLayout。这是我的 XML 布局:

<?xml version="1.0" encoding="utf-8"?>
<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:background="@drawable/bg_main"
android:minHeight="?attr/actionBarSize">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorTab"
app:layout_scrollFlags="scroll|enterAlways"
/>
</android.support.design.widget.AppBarLayout>

<FrameLayout
android:id="@+id/fragment_placeholder"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
>

<android.support.v4.view.ViewPager
android:id="@+id/slide_viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

</FrameLayout>

<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:itemBackground="@color/colorTab"
app:itemIconTint="@drawable/bottom_navigation_toolbar"
app:itemTextColor="@drawable/bottom_navigation_toolbar"
app:menu="@menu/bottom_bar"
/>

</android.support.design.widget.CoordinatorLayout>

另请查看 this问题,它使用几乎相同的布局,并且还展示了如何更改 BottomNavigationView 的行为,以便在您滚动时隐藏它。如果您希望实现该功能,请确保创建类 BottomNavigationBehavior(或您想要的任何名称)并将此行添加到 XML 中的 BottomNavigationView:

app:layout_behavior="com.yourpackage.yourpackage.BottomNavigationBehavior"

希望对您有所帮助!

关于android - 如何在 Android 中显示 BottomNavigation CoordinatorLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44462972/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com