ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Mobile specific functions / Phone functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Lists the notification categories of the application.
Example
// Display in a List Box control
// the list of notification categories of the application
arrCategory is array of notificationCategory = NotifListCategory()
FOR EACH Category OF arrCategory
ListAdd(LIST_Category, Category.Name)
END
Syntax
<Result> = NotifListCategory()
<Result>: Array of NotificationCategory
Array of NotificationCategory variables corresponding to the list of notification categories of the application.
Remark: These variables take into account changes made by the user in the application's notification settings screen.
Remarks
  • To delete a category, use NotifDeleteCategory.
  • NotifListCategory is available only for devices running Android 8.0 or later (API level 26).
    A fatal error occurs if the function is used with an earlier system version.
    To determine the version of Android the application is running on, use SysAndroidVersion.
Component: wd290android.jar
Minimum version required
  • Version 24
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help