如何在点击通知时打开应用程序?

时间:2017-06-27 10:01:38

标签: android notifications

我在音乐播放器中实现了媒体通知和锁屏通知。在单击锁定屏幕通知时,如何向用户询问密码以及如何打开应用程序。

同时点击我已打开应用程序时的媒体通知。但是如何关闭通知栏或如何隐藏整个通知栏Media Notification image

以及如何在"中显示我的申请建议"在任何文件目录中单击音乐文件时。

2 个答案:

答案 0 :(得分:0)

要求输入密码是什么意思?只需打开一个要求输入密码的活动。

至于开放活动使用Nirali解决方案:Open application after clicking on Notification

 NotificationManager notificationManager = (NotificationManager) context
        .getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(icon, message, when);

Intent notificationIntent = new Intent(context, HomeActivity.class);

notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
        | Intent.FLAG_ACTIVITY_SINGLE_TOP);

PendingIntent intent = PendingIntent.getActivity(context, 0,
        notificationIntent, 0);

notification.setLatestEventInfo(context, title, message, intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(0, notification);

答案 1 :(得分:0)

对于“打开方式”,您应该在清单中定义intent-filter。请查看此register as music playerhttps://developer.android.com/guide/components/intents-filters.html