How to update Title in AppUi. You can refer to this code snippet below to update the Title of you app from AppUi.
HBufC* titlePaneRes= StringLoader::LoadLC( R_MYAPP_TITLE );
CAknTitlePane* titlePane = STATIC_CAST( CAknTitlePane*,
StatusPane()->ControlL( TUid::Uid( EEikStatusPaneUidTitle ) ) );
titlePane->SetTextL( titlePaneRes->Des());
CleanupStack::PopAndDestroy( titlePaneRes);
0 comments:
Post a Comment