Namespaces
Variants
Actions

How to Change an Image in the Context Pane

Jump to: navigation, search
Article Metadata

Article
Created: Den123 (27 Jun 2007)
Last edited: hamishwillee (08 May 2013)

In your AppUi class use following code:

  #include <akncontext.h> 
Link against: avkon.lib
CFbsBitmap* newImage; // set new image first !
 
CEikStatusPane* statusPane = StatusPane();
TUid cpUid;
cpUid.iUid= EEikStatusPaneUidContext;
CEikStatusPaneBase::TPaneCapabilities subPane =
statusPane->PaneCapabilities( cpUid );
// can access context pane ?
if( subPane.IsPresent() && subPane.IsAppOwned() )
{
CAknContextPane* contextPane =
static_cast<CAknContextPane*>( statusPane->ControlL( cpUid ) );
contextPane->SetPicture( newImage );
}
This page was last modified on 8 May 2013, at 03:00.
85 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved