在溢出菜单图标上添加徽章 - Android
Is there any easy way of adding a simple badge/dot on the Overflow Menu (three-dot menu) icon on the Toolbar?
I'm trying to show the user that there is a new menu item inside. Note that I should be able to add/remove this programmatically. Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,在styles.xml中自定义溢出按钮样式:(
灵感来自如何将 android 上的三点按钮更改为其他按钮,但使用
android:id
而不是android:src 在样式中)
然后,添加一个 徽章:
First, customize the overflow button style in styles.xml:
(inspired by How to change three dots button on android to other button, but with
android:id
instead ofandroid:src
in the style)Then, add a badge:
您可以使用简单的
BadgeDrawable
:并稍后添加/删除它:
或
You can use simple
BadgeDrawable
:and add/remove it later:
or