Can I force expand android notification on android 4.1+? [closed]

霸气de小男生 提交于 2019-12-06 19:42:25

问题


I wonder if I could force expand my notification which have 2 buttons, because I don't think users will find them if they are not expanded.

Poweramp seems achieved that, anyone please help me. thx in advance.


回答1:


As far as I know, the first notification in the notification tray is always presented with the expanded view by default (if a BigView is defined for the notification).

So, what you could do is increase the priority of your notification so that it becomes the first notification in the tray, and that way, it will always be expanded by default.

mNotification.priority = Notification.PRIORITY_MAX;



来源:https://stackoverflow.com/questions/20798565/can-i-force-expand-android-notification-on-android-4-1

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!