Discussion Board
-
Bring app to foreground
2002-07-24, 10:41
#1
Regular Contributor
How do I bring application from background to foremost window?
Thanks.
-
RE: Bring app to foreground
2002-10-31, 07:05
#2
Regular Contributor
You can do this using AppUi's ActivateViewL(). You will need to know the application Uid and view Uid of your view to do this. Example:
const TUid KMyAppUid = { 0x10000000 }; // your application Uid
CCoeAppUi::ActivateViewL(TVwsViewId(KMyAppUid, TUid::Uid(1)));
If you do this within your own application you can use ActivateLocalViewL(). In this way you only need your ViewUid.
ActivateLocalViewL(TUid::Uid(1));
Eero Tunkelo
Developer Support
Forum Nokia
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules