How to hide an app on Symbian tasklist (fast-swap window)
I have been searching about how can I do it, there are many ways to solve the problem, here’s a list of pages that contains some solutions:
At nokia wiki I found this entry that hides windowgroup.
This post from Paul Todd blog shows how can you do it using a single line of code, you can add this line on your YourAppUI.cpp file like below:
1 2 3 4 5 6 7 8 | void CYourAppUI::ConstructL { ...constructor code... this->HideApplicationFromFSW(ETrue); ...constructor code... } |