iOS Question I want such code Notification for b4a in b4i

alfaiz678

Active Member
Licensed User
hallo
I want such code Notification for b4a in b4i

B4X:
            Dim n As NB6
            n.Initialize("default", Application.LabelName, "DEFAULT").SmallIcon(Application.Icon)
            n.Progress(ThePercentage, 100, False)
            n.OnlyAlertOnce(True)
            notif = n.Build(Progress, ContentText, "nProgress", Main)
            n.BigTextStyle("",  ContentText,"text")
            n.Visibility("PUBLIC")
            n.SetDefaults(False,False,False)
            notif.Notify(1)
             notif.Cancel(1)

I couldn't get what I wanted from this example.
https://www.b4x.com/android/forum/threads/usernotificationcenter-class.117925/#content
and thank you
 
Top