Flip Close environment

Login to reply to this topic.
Fri, 2005-04-01 06:34
Joined: 2004-08-25
Forum posts: 32
Hi all,

Does anyone know how to make a symbian program to work even when the flip keyboard of P900/P910i is closed? I really have no idea on that. Thank you very much.

Thanks,
Vincent

Fri, 2005-04-01 06:40
Joined: 2004-12-03
Forum posts: 192
Flip Close environment
Code:
   TScreenMode screenMode = CEikonEnv::Static()->ScreenDevice()->CurrentScreenMode() == 0
       ?    EScreenModeFlipOpen
       :    EScreenModeFlipClosed;

if (screenMode == EScreenModeFlipClosed)
...

something like this?
Fri, 2005-04-01 10:58
Joined: 2004-08-25
Forum posts: 32
Flip Close environment
Hi,

But how can I initialise my app in the flip close mode? Since I can't see my app when the flip is close.

Thanks,
Vincent
  • Login to reply to this topic.