Hi !
I want to show a message when my application is in the background. I have the following code from Series 60 which " surprisingly " works and shows the message when my application is in the foreground, but not when it is in the background
CAknGlobalNote* iGlobalNote = CAknGlobalNote::NewL(); //Initialize the note
CleanupStack::PushL(iGlobalNote);
iGlobalNote->ShowNoteL(EAknGlobalInformationNote,aDes);
CleanupStack::PopAndDestroy(); // globalNote
I would like to know what is the UIQ counterpart of the Series 60 Global Note if there is any and if not how do I display a message box while my application is running in the background ? . Some sample code would be really appreciated.
Thanks 😊