fsj Member Licensed User Longtime User Mar 3, 2014 #1 Is it possible to set Text into the notification tray I will warn for low batterie in the tray, therefor I want to set some text over there how can I do this?
Is it possible to set Text into the notification tray I will warn for low batterie in the tray, therefor I want to set some text over there how can I do this?
mangojack Expert Licensed User Longtime User Mar 4, 2014 #2 B4X: Dim Notif As Notification Notif.Initialize Notif.Icon = "icon" Notif.SetInfo("Warning","Your battery is getting low ...",Me) Notif.Sound = True Notif.Vibrate = True Notif.Notify(1) 'Notif.Cancel(1) Upvote 0
B4X: Dim Notif As Notification Notif.Initialize Notif.Icon = "icon" Notif.SetInfo("Warning","Your battery is getting low ...",Me) Notif.Sound = True Notif.Vibrate = True Notif.Notify(1) 'Notif.Cancel(1)
fsj Member Licensed User Longtime User Mar 4, 2014 #3 Thanks that works fine is there a way to display Text only in the notification tray or somewhere near the notification tray see attached picture Attachments Screenshot.gif 5.1 KB · Views: 235 Upvote 0
Thanks that works fine is there a way to display Text only in the notification tray or somewhere near the notification tray see attached picture
Erel B4X founder Staff member Licensed User Longtime User Mar 4, 2014 #4 No. Only icons are displayed there. Upvote 0
fsj Member Licensed User Longtime User Mar 4, 2014 #5 I know the Batterie Indicator App, this shows the battery in % or Accu Weather app is this an Icon which changes every time? can I generate an icon from B4A ? Upvote 0
I know the Batterie Indicator App, this shows the battery in % or Accu Weather app is this an Icon which changes every time? can I generate an icon from B4A ?
Erel B4X founder Staff member Licensed User Longtime User Mar 4, 2014 #6 The icon in this case must be a resource file. You will need to create a set of icons and then choose an icon at runtime. Upvote 0
The icon in this case must be a resource file. You will need to create a set of icons and then choose an icon at runtime.