我想在 android 顶部栏中放置一个通知,当用户点击它时,downloadmanager 将开始下载文件。如何为此通知设置pendingIntent?
问问题
1738 次
1 回答
0
Android 通知 - 教程 肯定会帮助你实现你想要的。
下面是您想要的内容的摘录。您可以调用以下函数:
public void createNotification(View view) {
// Prepare intent which is triggered if the
// notification is selected
Intent intent = new Intent(this, NotificationReceiverActivity.class);
PendingIntent pIntent = PendingIntent.getActivity(this, 0, intent, 0);
// Build notification
// Actions are just fake
Notification noti = new Notification.Builder(this)
.setContentTitle("Title")
.setContentText("Subject").setSmallIcon(R.drawable.icon)
.setContentIntent(pIntent)
.addAction(R.drawable.icon, "Call", pIntent)
.addAction(R.drawable.icon, "And more", pIntent).build();
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
// Hide the notification after its selected
noti.flags |= Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(0, noti);
}
要启动下载管理器,您可能需要相应地调整功能。查看教程链接以获得详细的理解。还有其他相关答案可能会有所帮助:
单击推送通知android问题后打开活动。
希望这可以帮助。
于 2013-07-27T01:00:43.590 回答