android - Using an application's notification to invoke another application/activity -
how can use application's notification start new application. notificationmanager not provide me method lets me access generated notifications. suggestions? thanks.
you have create notification pendingintent
. android developers:
context context = getapplicationcontext(); charsequence contenttitle = "my notification"; charsequence contenttext = "hello world!"; intent notificationintent = new intent(this, myclass.class); pendingintent contentintent = pendingintent.getactivity(this, 0, notificationintent, 0); notification.setlatesteventinfo(context, contenttitle, contenttext, contentintent); private static final int hello_id = 1; mnotificationmanager.notify(hello_id, notification);
where myclass
activity want start notification.
Comments
Post a Comment