无法解析 BottomNavigationView 中的方法“setShiftingMode(Boolean)”
Posted
技术标签:
【中文标题】无法解析 BottomNavigationView 中的方法“setShiftingMode(Boolean)”【英文标题】:Cannot resolve method 'setShiftingMode(Boolean)' in BottomNavigationView 【发布时间】:2018-12-22 20:13:48 【问题描述】:升级到最新的支持库“28.0.0-alpha1”后,我无法在BottomNavigationView
中禁用移位模式,即BottomNavigationItemView.setShiftingMode()
方法不再可用。
java.lang.NoSuchFieldException: No field mShiftingMode in class Landroid/support/design/internal/BottomNavigationMenuView;
W/System.err: at java.lang.Class.getDeclaredField(Native Method)
at com.avocure.avocurehealth.utils.ViewUtils.removeNavigationShiftMode(ViewUtils.java:44)
at com.avocure.avocurehealth.ui.main.MainActivity.init(MainActivity.java:125)
at com.avocure.avocurehealth.ui.main.MainActivity.onCreate(MainActivity.java:107)
at android.app.Activity.performCreate(Activity.java:6679)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1118)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2618)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2726)
at android.app.ActivityThread.-wrap12(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1477)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:154)
at android.app.ActivityThread.main(ActivityThread.java:6119)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
我使用this方法来禁用变速模式。
如果有人能阐明最新版本中是否发生了某些变化,或者这是一个错误还是什么,我们将不胜感激。
【问题讨论】:
如果您想完全删除所有动画,请尝试这种方式。 ***.com/a/53928761/3448003 【参考方案1】:找到答案。在支持库 28.0.0-alpha1 中,我们现在可以使用以下任一方法添加标签(移除移位模式):
XML:
<android.support.design.widget.BottomNavigationView
.
.
.
app:labelVisibilityMode="labeled" />
代码:
mBottomNavigationView.setLabelVisibilityMode(LabelVisibilityMode.LABEL_VISIBILITY_LABELED);
或者:
@SuppressLint("RestrictedApi")
public static void removeNavigationShiftMode(BottomNavigationView view)
BottomNavigationMenuView menuView = (BottomNavigationMenuView) view.getChildAt(0);
menuView.setLabelVisibilityMode(LabelVisibilityMode.LABEL_VISIBILITY_LABELED);
menuView.buildMenuView();
【讨论】:
以上是关于无法解析 BottomNavigationView 中的方法“setShiftingMode(Boolean)”的主要内容,如果未能解决你的问题,请参考以下文章
Android关于BottomNavigationView效果实现指南
BottomNavigationView - 阴影和波纹效果
如何使用 material.BottomNavigationView 设置 Jetpack 导航
使用导航组件时从 BottomNavigationView 中移除 Badge
Android中键盘上方的FloatingActionButton和隐藏在键盘下方的BottomNavigationView