gpt4 book ai didi

android - BottomNavigationView 在向上滚动而不是向下滚动时隐藏

转载 作者:太空狗 更新时间:2023-10-29 15:31:09 24 4
gpt4 key购买 nike

支持库 v25.0.0 中的新 BottomNavigationView 应该在向下滚动时隐藏,以便查看列表中的所有项目。但是,在我的测试场景中,向上滚动时 View 会隐藏。有什么想法会导致这种相反的行为吗?

inner_fragment 被设置为插入到 activity_main_framelayout_content Framelayout 中的 fragment 。下面的 XML 布局:

ma​​in_activity.xml:

<android.support.design.widget.CoordinatorLayout
android:id="@+id/activity_main_coordinatorlayout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
android:id="@+id/activity_main_appbarlayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<android.support.v7.widget.Toolbar
android:id="@+id/activity_main_toolbar"
android:layout_height="?attr/actionBarSize"
android:layout_width="match_parent"
android:background="?attr/colorPrimary"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways">

<include layout="@layout/activity_main_spinner_layout"/>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>

<FrameLayout
android:id="@+id/activity_main_framelayout_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:fitsSystemWindows="true"/>
</android.support.design.widget.CoordinatorLayout>

<android.support.design.widget.NavigationView
android:id="@+id/activity_main_framelayout_navigation_drawer"
android:layout_width="@dimen/drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
android:background="@color/color_black_700"/>

inner_fragment.xml:

<FrameLayout 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">

<FrameLayout
android:id="@+id/inner_fragment_framelayout"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

<android.support.design.widget.BottomNavigationView
android:id="@+id/inner_fragment_bottom_navigation_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:menu="@menu/inner_fragment"
app:itemBackground="@drawable/bg_bottom_navigation"
app:itemIconTint="@color/ic_bottom_navigation"
app:itemTextColor="@color/ic_bottom_navigation"/>
</FrameLayout>

最佳答案

一个简单的解决方案是向 appbarlayout 添加一个偏移监听器。非常适合我。

所以像这样:

((AppBarLayout)toolbar.getParent()).addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
mNavigationBar.setTranslationY(verticalOffset*-1);
}
});

关于android - BottomNavigationView 在向上滚动而不是向下滚动时隐藏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40171801/

24 4 0
文章推荐: android - 如何更改 Android 中的汉堡包图标(NavigationDrawer)
文章推荐: javascript - 如何使用 jQuery 将