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

rdbms - what exactly the undo information lives in oracle? -

bash - How do you programmatically add a bats test? -

clojure - 'get' replacement that throws exception on not found? -