Cannot mute Key Sounds. Where does the bug?

Login to reply to this topic.
Mon, 2008-02-18 12:59
Joined: 2007-03-19
Forum posts: 6

Hi all.
I'm trying to set the silent key mode like this:
CAknAppUi::KeySounds()->PushContextL(R_AVKON_SILENT_SKEY_LIST)
If my AppUi class doesn't override HandleForegroundEventL() it works well.
But if I add HandleForegroundEventL with:

if( aForeground )
        {
        KeySounds()->PushContextL( R_AVKON_SILENT_SKEY_LIST );
        }
else
        {
        KeySounds()->PopContext();
        }

the key sound will not be disabled.
The same problem I have found: http://discussion.forum.nokia.com/forum/showthread.php?t=35398

  • Login to reply to this topic.