Android: How can I put my notification on top of notification area?
Asked Answered
H

4

25

I'm trying to put my notification on top of notification area.

A solution is to set the parameter "when" to my notification object with a future time like:

notification.when = System.currentTimeMills()*2; 

The code that I'm using in this:

long timeNotification = System.currentTimeMillis()*2;
Notification notification = new Notification(statusIcon,c.getResources().getString(R.string.app_name),timeNotification);
notification.flags = Notification.FLAG_ONGOING_EVENT | Notification.FLAG_NO_CLEAR;
notification.when = timeNotification;
notification.priority = Notification.PRIORITY_MAX;

but some apps (like Facebook) are able to put a simple notification with their current time over mine.

If I refresh my notification it remains under these ones.

What parameters I have to set to put my Notification to the top of the notifications area?

Hartsfield answered 6/10, 2012 at 9:51 Comment(2)
what Android OS version you are testing on?Breach
Android 4.1.1 Jelly BeanHartsfield
H
20

You should do this. Other answers seem outdated.

NotificationCompat.Builder mBuilder =
            (NotificationCompat.Builder) new NotificationCompat.Builder(context)
            .setSmallIcon(R.drawable.some_small_icon)
            .setContentTitle("Title")
            .setContentText("This is a test notification with MAX priority")
            .setPriority(Notification.PRIORITY_MAX);

setPriority(Notification.PRIORITY_MAX) is important. It can also be replaced with any of the following as per requirement.

Different Priority Levels Info:

PRIORITY_MAX -- Use for critical and urgent notifications that alert the user to a condition that is time-critical or needs to be resolved before they can continue with a particular task.

PRIORITY_HIGH -- Use primarily for important communication, such as message or chat events with content that is particularly interesting for the user. High-priority notifications trigger the heads-up notification display.

PRIORITY_DEFAULT -- Use for all notifications that don't fall into any of the other priorities described here.

PRIORITY_LOW -- Use for notifications that you want the user to be informed about, but that are less urgent. Low-priority notifications tend to show up at the bottom of the list, which makes them a good choice for things like public or undirected social updates: The user has asked to be notified about them, but these notifications should never take precedence over urgent or direct communication.

PRIORITY_MIN -- Use for contextual or background information such as weather information or contextual location information. Minimum-priority notifications do not appear in the status bar. The user discovers them on expanding the notification shade.

For more details check the following link: http://developer.android.com/design/patterns/notifications.html#correctly_set_and_manage_notification_priority

Hamill answered 30/1, 2016 at 20:24 Comment(4)
I want to trigger heads-up notification but setting priority to PRIORITY_HIGH isn't working for me.Thalassography
Apps can still take over the top positionAlgorithm
priority max is deprecated.Mazuma
PRIORITY_MAX is deprecated, use NotificationManager.IMPORTANCE_HIGH instead.Mansfield
B
4

You can make your notification Ongoing, when it will appear higher then other usual notification. But in this case user would not be able to clear it manually.

In order to do this set flags to your Notification object:

notif.flags = Notification.FLAG_ONGOING_EVENT | Notification.FLAG_NO_CLEAR
Breach answered 6/10, 2012 at 10:0 Comment(1)
Thanks for your help. I edit my question to show you my code. I already use your suggestions.Hartsfield
A
3

Try setting priority of the notification to high

documentation > Notification Priority

Also check this question may it could help you Pin Notification to top of notification area

Allergy answered 6/10, 2012 at 10:13 Comment(3)
Thanks for your help. I edit my question to show you my code. I already use your suggestions.Hartsfield
So what is the result you are getting ?Allergy
Some apps are able to put their notifications over mine.Hartsfield
S
2

Please note that if you want a "heads-up" notification i.e., one that displays over the top of the current user window you must have the following set in your builder:

setDefaults(NotificationCompat.DEFAULT_VIBRATE)

The reference is in the javadoc:

A notification that vibrates is more likely to be presented as a heads-up notification, on some platforms.

Complete example for a heads-up notification:

NotificationCompat.Builder mBuilder =
            new NotificationCompat.Builder(context)
            .setSmallIcon(R.drawable.some_small_icon)
            .setContentTitle("Title")
            .setContentText("This is a test notification with MAX priority")
            .setPriority(Notification.PRIORITY_MAX)
            .setDefaults(NotificationCompat.DEFAULT_VIBRATE);
Selfsuggestion answered 4/7, 2017 at 2:16 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.