Activation is the process of switching or linking to a view. When the new view is activated, the old view is deactivated, and the new view is marked as the current view. Applications can have only a single view active at any given point of time. The current active view is the view that interacts with the user and receives events and menu choices.
Activation of a view is done using any of the following methods:
View activation without custom message.
CCoeAppUi::ActivateViewL( TVwsViewId& aViewId )
View activation with custom message.
CCoeAppUi::ActivateViewL( TVwsViewId& aViewId TUid aCustomMessageId, TDesC8& CustomMessage )
The following code snippet shows activating a view:
void CNewAppUi::ActivateViewL(const TVwsViewId& aViewId,TUid aCustomMessageId,const TDesC16& aCustomMessage) { HBufC8* narrowMessage = HBufC8::NewLC( aCustomMessage.Size() ); TPtr8 ptr=narrowMessage->Des(); ptr.Copy( ( TUint8* )aCustomMessage.Ptr(), aCustomMessage.Size() ); CCoeAppUi::ActivateViewL( aViewId,aCustomMessageId,narrowMessage->Des() ); iCCoeAppUi->NotifyNextActivation( *iViewActivationObserver_Notify ); CleanupStack::PopAndDestroy( narrowMessage ); }
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.