B4A Question Notification Setinfo2 Extracting the tag problem - m643    Jun 23, 2013   (1 reaction) Hi all,
I have the following notification:
myNotification.SetInfo2("Welcome", "Welcome", "tagtest", "Main")
When the notification is fired and... Other B4A v8.0 has been released! - Erel    Mar 20, 2018   (59 reactions) change anything. Notification.SetInfo or Notification.SetInfo2 should be the last calls before you show the notification. Notification.SetInfo / SetInfo2 accept CharSequences so it can work.... Backward compatibility notes Notification.SetInfo or SetInfo2 should be the last calls before... they are now more reliable. Notification.Initialize2 - Allows to set the notification channel importance level... with targetSdkVersion 26 requirements. Push notifications and other features that cause apps to start from... B4A Library FirebaseNotifications - Push messages / Firebase Cloud Messaging (FCM) - Erel    Jun 26, 2023   (47 reactions)   tags: Fcm, Firebase, Push, Messaging .67692/ Make sure to add the Notifications snippet. You should also reference FirebaseAnalytics 2...) Log($"Message data: ${Message.GetData}"$) Dim n2 As Notification n2.Initialize2(n2.IMPORTANCE_DEFAULT) n2.Icon = "icon" n2.SetInfo(Message.GetData.Get("title"), Message.GetData.Get("body"), Main) n2.Notify(1) End Sub Sub...Updated tutorial: https://www.b4x.com/android/forum/threads/b4x-firebase-push-notifications-2023... B4A Tutorial [B4X] Firebase Push Notifications 2023+ - Erel    Feb 11, 2026   (32 reactions) the code references). 2. Download the attached project. Note the two subs added there (RemoteNotification... the foreground. You can UserNotificationCenter to change this behavior (search and you will find). 2...Google has deprecated the previous method of sending push notifications. It will stop working... API v1. B4J 1. Make sure that the new API is enabled as shown in this screenshot: 143221 2.../ Download google-services.json and put it in the project folder. 2. See the attached project. 3... B4i Tutorial FirebaseNotifications / Push Messages (server not required) - Erel    May 5, 2026   (7 reactions)   tags: Erel anywheresoftware.b4i.push. Enable push notification service. 2. Create an Apple Push Notification SSL...Updated tutorial: https://www.b4x.com/android/forum/threads/b4x-firebase-push-notifications-2023....126402 171393 The configuration steps are still relevant. 261132706 Firebase Notifications...) App.RegisterUserNotifications(True, True, True) App.RegisterForRemoteNotifications fm...) 'add ios_ prefix to all topics End Sub Private Sub Application_RemoteNotification (Message... B4A Question Clicking on the notification and running the service - Erel (first post)    May 31, 2023   (1 reaction) Better to start the Main activity and then check the notification_tag (SetInfo2).... B4A Question Get NotificationID within Activity started by Notification [SOLVED] - Erel (first post)    May 27, 2021   (1 reaction) You can get the Tag parameter (Nummer in this case): https://www.b4x.com/android/forum/threads/notification-setinfo2-extracting-the-tag-problem.30473/post-176932... B4A Library NB6 - Notifications Builder - Erel    Mar 12, 2025   (63 reactions)   tags: B4A Notifications NB6, Background, SDK, B4A Notifications, NotificationBuilder Class, B4A Background The notifications features changed a lot as Android evolved. Android 8 (with targetSdkVersion 26+) adds another complexity with the introduction of notification channels. The built-in Notification object was rewritten in B4A v8 to work properly with all versions. This is a good option if you are interested in simple notifications. Now for the new option. NB6 is a class that builds both simple and complex notifications: https://www.b4x.com/basic4android/images/SS-2018-04-12_18... B4A Question Open a link on notification click - Erel (first post)    Oct 26, 2020 You can use Notification.SetInfo2 and check for the tag value in Activity_Resume. This will allow you to avoid showing another notification.... B4A Question How to start another activity when Replacing Notification by NB6 - Alain75    Nov 19, 2024 I used the simple notification builder and passed an intent in the setinfo2 activity parameter in order to start another application when clicking the notification.
dim notif as Notification, pm as PackageManager
...
notif.SetInfo2("Title","Text","",pm... Page: 1   2   3   4   5   6   7   |