我正在使用AHBottomNavigation This Tutorial
当我滚动列表时,问题是底部导航栏隐藏,如何停止隐藏列表视图滚动下的底部导航栏。
滚动行为就像this 但我想修复(始终可见)底部导航栏。如何坚持这个吧。
提前致谢。
答案 0 :(得分:3)
AHBottomNavigation
视图有一个方法setBehaviorTranslationEnabled(boolean behaviorTranslationEnabled)。禁用后,视图不会滚动(根据AHBottomNavigationBehavior
的方法handleDirection(V child, int scrollDirection)
)。
希望这有帮助。
答案 1 :(得分:2)
您需要使用setBehaviorTranslationEnabled(boolean behaviorTranslationEnabled)
并在其中传递false
。您可以在库类中使用该方法。
你可能已经完成了这个
AHBottomNavigation aHBottomNavigation = new AHBottomNavigation();
你只需要这样做
aHBottomNavigation.setBehaviorTranslationEnabled(false);
答案 2 :(得分:2)
这样可行,我也有同样的问题。
AHBottomNavigation bottomNavigation = new AHBottomNavigation();
bottomNavigation.setBehaviorTranslationEnabled(false);