AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones específicas para móviles / Funciones de teléfono
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Adds a notification to the system bar (Android) or notification center (iOS).
Android The Notification is displayed in the system bar and can then be scrolled to view its details. Notifications can contain specific actions, displayed as clickable text below the notification message.
Additional notifications are implemented via the AdditionalAction property of the Notification variable.
Starting with Android 8.0 (Oreo, API level 26)all notifications created by an Android application must be associated with a notification category (also known as a "channel"). The notification categories are defined by the Category property of Notification variables.
iPhone/iPad The notification will be visible in the notification center only if the application is in background (for example, using the position tracking in background with geoTrackingEnable).
Ejemplo
notif is Notification
notif.Title = "New incoming message"
notif.Message = "Click here to display the message"
NotifAdd(notif)
Sintaxis
<Result> = NotifAdd(<Notification>)
<Result>: Boolean
  • True if the notification was added,
  • False otherwise.
Note In the simulator, this function has no effect and always returns False.
<Notification>: Notification variable
Name of the Notification variable containing the description of the notification to display.
If this parameters corresponds to a notification that is already added, this notification will be updated. In this case, NotifAdd and NotifModify have the same effect.
Clasificación Lógica de negocio / UI: Lógica de negocio
Componente: wd300android.aar
Versión mínima requerida
  • Versión 16
Esta página también está disponible para…
Comentarios
NotificationDisplay
https://repository.windev.com/resource.awp?file_id=281474976710849;notificationdisplay
BOLLER
30 08 2019

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local