How to add a button into notification?

浪尽此生 提交于 2019-11-28 02:12:28

问题


I do it like this:

RemoteViews views = new RemoteViews(..);
views.setOnClickPendingIntent(R.id.button1,pd);
noti.contentviews = views;

and then notify the notification. I can see the button in the notification, but the button can't be clicked. When i click the button,the whole notification clicked! How can i resolve this question? I found everywhere for this,but nothing useful found. someone said, some phones don't support the notification button, but samsung galaxy s, the musicplayer's notification has button click event.


回答1:


You cannot put interactive widgets, like a Button, in a Notification and get user input from them. These are for output display only.




回答2:


We can made custom notification and put buttons into that and also can perform different functionality on that onClick function, recently I was stuck in the same problem but this link

Handling buttons inside android notifications

save my life.

You can also see my code here Adding button action in custom notification

and it actually works on my HTC Sensation XE havent tried on other devices yet. So cheer and good luck



来源:https://stackoverflow.com/questions/7330592/how-to-add-a-button-into-notification

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