notification

  1. M

    Android Question Media style notification

    Hello, I was hopping if anyone can guide me with media style notification like the image below and what I mean is about both UI and the back-end also. I have seen this type of notification player in lot of applications but I wish if I can create one with b4a.
  2. W

    Tool [Tool] Make your own notification icon with an ASCII and/or a FontAwesome/Material Icons character

    Hi all, I wanted an easy way to create simple B4A notification icons consisting of a letter and a symbol; the symbol could then show things like 'there is a message' / 'there are no messages' / 'there is no network connection'. So I came up with MakeNotificationPng. Attached you'll find the B4J...
  3. uniplan

    Android Question Icon app always show in status bar

    HI, i use firebase to send notification to app.Thi is my code to show thw notification: Dim n As Notification n.Initialize() n.Icon = "icon" n.SetInfo2(titolo_push,messaggio_push,id_notifica,Main) n.Notify(id_notifica) n.Vibrate=True...
  4. Yunus ÖZ

    Android Question Notification Play/Pause Problem

    Hi everyone, I'm using NotificationBuilder library for my radio app. (Thank you very much to the developer @barx ). This is my Custom Layout File <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"...
  5. Flavio SOuza

    Android Question Invalid notification (no valid small icon)

    Hello devs, I'm trying to send a notification to the mobile, however on MOTO G6 the same presents this error icon! My Code: =============================== Dim n As Notification n.Initialize n.SetInfo2("ABC","123","news",Me) 'n.Insistent = True n.Notify(1)...
  6. M

    Android Question Firebase notification

    Hello everyone I want to handle notification click in firebase when the app is not running, i need to do some actions when the notification clicked. Can anyone help me?
  7. Alexander Stolte

    Android Question NB6 group notifications

    Hello, how can i group notifications with NB6? For example WhatsApp:
  8. Sandman

    iOS Question How to customize appearance of notifications?

    I just found out that it's possible to customize the appearance of notifications on iOS, is this something that we can do in B4i also? More info: Customizing the Appearance of Notifications
  9. Sandman

    iOS Question [SOLVED] How to use "Notification-Related Actions"?

    I just found that notifications on iOS can have actions, but I wasn't able to find anything in the forum about it. Has anyone figured out this and would be willing to share a code example? More info here: Declaring Your Actionable Notification Types Handling Notifications and...
  10. rleiman

    Android Question [SOLVED] Placing a widget causes notification title and body to be duplicated.

    Hi Everyone, I'm having a problem where placing the app widget on the screen causes the notification title and body to be duplicated when the user pulls down the notifications drawer. Here's the code that places the title and body of the notification which is in the starter service. Sub...
  11. rleiman

    Android Question [SOLVED] Displaying the body text in a notification.

    Hi Everyone, Can you check my coding and let me know where I made mistakes? I'm trying to display some text in the body area of SetInfo. In the example, the text "This is my app name." is being displayed in both the "Title" and the "Body" area of the notification when I drag down the...
  12. DactilPlus

    Android Question No Firebasenotifications when app is closed

    Hello, I just implemented firebase notifications on iOs and Android, and they go well with the app turned on in the background. In iOS it shows the notification when the app is off, but not Android. Update the Android device, but I can not get the notification with the app off. I followed...
  13. MarkusR

    Android Question Notification at Phone without using Google

    hello, i wonder why my phone get Notifications if it is off. in my imagination there must be a service at phone that is connected permanent to web or it poll for messages in a intervall. did someone know that? i will have the same achievement with a service in b4a. can i get this with the...
  14. Jmu5667

    Android Question [RESOLVED] Question about New Notification Methods

    Hello I remember using the old notification method and it was quiet simple to use. Most of my applications have more then 1 background service running. I generally have a primary server running, svc_service, and it has the notification object defined in it. All the other services that need to...
  15. K

    Android Question Bakground service not working

    Hii, I make background service app which show notification but it work in some device and not work in some devices. Its work in Xiaomi MI A1 and not work in Redmi note 4. I aslo use region service attributes == #StartAtBoot: True
  16. K

    Android Question android show notification

    I want to show notification on android
  17. K

    Android Question BLE2 NOTIFICATIONS NOT ACTIVATED

    I have identical issue with previous thread, unable to activate notifications from BLE device. manager.SetNotify succeeds, but DataAvailable event after that is never raised and notifications are not detected. BLE2 Ver.1.36, trying to communicate with BLE Body Thermometer Service and...
  18. Yunus ÖZ

    Android Question FirebaseMessaging - preventing show notification when app is running

    Hi, I look all example and try all of them, but always notification is coming when app is running. I only want to show message when notification is coming if app is running 'B4A version 8.30 'Target SDK: 26 Sub Service_Start (StartingIntent As Intent) FM.HandleIntent(StartingIntent)...
  19. I

    Android Question How to hide notification icon in status bar?

    I have foreground service on an app targeting SDK 26 and therefore there will be a persistent notification as long as the service is up. I know that I can customise this notification using Service.AutomaticForegroundNotification. What I am trying to do is to hide the notification icon in such a...
  20. rleiman

    Android Question Notifications seem to work differently in Oreo

    Hi Everyone, All of my apps are using this coding to display a notification that lets the user know the app is running in the background. The coding was working correctly on my test phone running Android 7. In the Starter module: In the Process_Globals: Private nNotify As Notification...
Top