heads-up-notifications Questions

7

Solved

I would that the notification does not disappear after a few seconds. So i have create the notification like this: NotificationCompat.Builder builder = new NotificationCompat.Builder(context); b...
Chara asked 13/1, 2017 at 17:4

1

When receiving an FCM from cloud functions in a Flutter app, on iOS the notification appears with a banner and in the system tray as expected. However, on Android the notification appears straight ...

2

I am working with Nexus 5 and Cyanogen One plus devices with Lollipop android OS. I am trying to test various notifications of certain app. I was successfully able to test tray notification and loc...

3

Solved

Is it possible to set the duration of the headsup notification to unlimited? right now its displayed just for 5 seconds. Already tried different things like changing the category. But the duration ...
Earthman asked 19/2, 2018 at 8:28

1

I have created heads up notification. As like below, NotificationCompat.Builder notification = new NotificationCompat.Builder(this, channelId) .setContentTitle("Message") .setContentTex...

4

Do we have any way to show heads up notification, when receive push from Firebase Cloud Messaging? In foreground it is possible using Notification. But there is no way to show heads up notification...

0

How to enable heads-up notifications programatically on Xiaomi devices? Some apps (for example Telegram) have this permisstions turned on by default. Settings screenshot: https://i.sstatic.net/kSs...

2

Solved

I make a head up notification this way: Notification.Builder nb = new Notification.Builder(context) .setSmallIcon(icon) .setContentTitle("Title") .setContentText("Content") .setDeleteIntent(de...
Lapham asked 30/12, 2015 at 21:4

1

Solved

Background I've found an app that somehow hides heads-up notifications, including even ongoing notifications (used by foreground services), called NCleaner . I was wondering how such a thing work...
Counterstamp asked 30/7, 2018 at 5:24

0

My application could play some audio. Once user press at the audio title the notification with the play/pause/rewind buttons appears at the notification drawer. I noticed that in Android O (8) th...
Cadaverine asked 12/11, 2017 at 9:39

2

Solved

With FCM I receive push notifications in the system tray when the app is in the background or not running. When the app is in the foreground I can override onMessageReceived and create my own heads...

1

Solved

Background Ever since heads-up notifications appeared on Android, some people liked it for its quick handling, yet some hated it for showing on top of apps (especially games). In order to show he...
Dope asked 25/9, 2016 at 10:28

1

Solved

I plan to have a heads up notification that has two Actions: one to Approve a login request and one to Decline a login request. By clicking on either of these actions I wish to fire off a HTTP requ...

1

Background Android Lollipop (API 21) introduced a way to show notifications outside of the status bar (AKA "notifications bar"), so that the user can handle them right away. It's called "Heads-up ...
1

© 2022 - 2024 — McMap. All rights reserved.