Android API:状态栏 - 重定向到手机/短信/ gmail /等

时间:2011-12-20 12:00:42

标签: java android notifications statusbar

点击状态栏中的通知后,是否可以重定向用户,例如phone / sms / gmail / ..?

提前致谢!

1 个答案:

答案 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