长时间按项目时,如何删除底部努力量表中的Toast像弹出窗口?
如何删除材料底部导航视图中的烤面包之类的弹出式bottomNavigationView
在我们长时间按单个项目时会发生。 。
How to remove the toast like popup in material bottom navigation view BottomNavigationView
occurs when we long press the single item .The demo image attached below
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
即
tooltip
,可以通过调用tooltipcompat.settooltiptext(view,null)
在每个菜单项上被禁用。当您将其设置为
tooltip
文本之后,将上述代码可能无法正常工作,将其设置为null
。您可以在菜单项本身上覆盖longClicklistener
,因此不会显示tooltip
文本。That is
tooltip
, It can be disabled by callingTooltipCompat.setTooltipText(view, null)
on each menu item.There's a possible chance that the above code won't work, when the
bottomNavigationView
sets thetooltip
text after you set it asnull
. You can override thelongClickListener
on the menu item itself, so it won't show atooltip
text.