点击状态栏中的通知后,是否可以重定向用户,例如phone / sms / gmail / ..?
提前致谢!
答案 0 :(得分:1)
您正在寻找“setLatestEventInfo”方法。在我的App中看起来像这样:
Intent msgIntent = new Intent(this, ExampleClass.class);
PendingIntent nManagerStart = PendingIntent.getActivity(this, 0,
msgIntent, 0);
msg.flags |= (Notification.FLAG_AUTO_CANCEL);
msg.setLatestEventInfo(this, contentTitle, contentText, nManagerStart);
notificationManager.notify(NOTIFY_ID, msg);
如您所见,可以在通知中添加pendingIntent。
以下是通知管理器的指南:http://developer.android.com/guide/topics/ui/notifiers/notifications.html