How to Change an Image in the Context Pane
Article Metadata
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 );
}


(no comments yet)