Archived:How to switch application in foreground using PySymbian
Aquivado: Este artigo foi arquivado, pois o conteúdo não é mais considerado relevante para se criar soluções comerciais atuais. Se você achar que este artigo ainda é importante, inclua o template {{ForArchiveReview|escreva a sua justificativa}}.
All PySymbian articles have been archived. PySymbian is no longer maintained by Nokia and is not guaranteed to work on more recent Symbian devices. It is not possible to submit apps to Nokia Store.
All PySymbian articles have been archived. PySymbian is no longer maintained by Nokia and is not guaranteed to work on more recent Symbian devices. It is not possible to submit apps to Nokia Store.
Article Metadata
Tested with
Devices(s): Nokia N96
Compatibility
Platform(s): S60 2nd Edition, S60 3rd Edition
Article
Keywords: appswitch
Created: cyke64
(19 Mar 2007)
Last edited: hamishwillee
(08 May 2013)
Contents |
Overview
You can use the very useful appswitch Python extension module to switch an application in background and bring it to foreground in focus.
Preconditions
You need to download required versions of appswitch module from the given two links:
Code
# import module
import appswitch
# push application to BACKGROUND
print appswitch.switch_to_bg(u"Menu")
# bring application to FOREGROUND
print appswitch.switch_to_fg(u"Menu")


If there has been no activity for a while and the phone is idle appswitch.switch_to_fg seems to be ignored. By resetting inactivity this problem seems to be solved.
--s021677 13:45, 26 November 2008 (EET)
08 Sep
2009