Opening status bar notification from code in android -


is possible open status bar notification code? tried checking notificationmanager found methods close current notifications. suggestion appreciated.

for wondering it's possible open if provide package name:

 intent = new intent();     i.setpackage(sbn.getpackagename());     i.setflags(intent.flag_activity_new_task);     startactivity(i); 

Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

c# - How do I get the Nth largest element from a list with duplicates, using LINQ? -

jsp - "Sending a redirect is forbidden after the response has been committed" in sendRedirect -