长时间按项目时,如何删除底部努力量表中的Toast像弹出窗口?

发布于 2025-01-21 16:01:48 字数 83 浏览 0 评论 0原文

如何删除材料底部导航视图中的烤面包之类的弹出式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 belowenter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜无邪 2025-01-28 16:01:48

tooltip,可以通过调用tooltipcompat.settooltiptext(view,null)在每个菜单项上被禁用。

bottomNavigationView
    .menu.forEach {
            TooltipCompat.setTooltipText(bottomNavigationView.findViewById<View>(it.itemId), null)
        }

当您将其设置为tooltip文本之后,将上述代码可能无法正常工作,将其设置为null。您可以在菜单项本身上覆盖longClicklistener,因此不会显示tooltip文本。

bottomNavigationView
    .menu.forEach {
        bottomNavigationView.findViewById<View>(it.itemId).setOnLongClickListener {
            // add any code which you want to execute on long click
            true
            }
    }

That is tooltip, It can be disabled by calling TooltipCompat.setTooltipText(view, null) on each menu item.

bottomNavigationView
    .menu.forEach {
            TooltipCompat.setTooltipText(bottomNavigationView.findViewById<View>(it.itemId), null)
        }

There's a possible chance that the above code won't work, when the bottomNavigationView sets the tooltip text after you set it as null. You can override the longClickListener on the menu item itself, so it won't show a tooltip text.

bottomNavigationView
    .menu.forEach {
        bottomNavigationView.findViewById<View>(it.itemId).setOnLongClickListener {
            // add any code which you want to execute on long click
            true
            }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文