Android Question How can i create a notification?

Waldemar Lima

Well-Known Member
Licensed User
Longtime User
How can i create notification like B4A-bridge ?
 

Attachments

  • Screenshot_2018-02-19-15-31-51.png
    429.6 KB · Views: 169

MarkusR

Well-Known Member
Licensed User
Longtime User
Local Notifications
B4X:
    Dim n As Notification
    n.Initialize
    n.Icon = "icon"
    n.SetInfo("This is the title", "and this is the body.","") 'Change Main to "" if this code is in the main module.
    n.Notify(1)
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…