Namespaces
Variants
Actions

Archived:Switching application UI orientation between landscape and portrait using Symbian C++

Jump to: navigation, search
Archived.png
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.



Article Metadata

Compatibility
Platform(s): S60 3rd Edition
S60 3rd Edition, FP1

Article
Created: User:Technical writer 2 (04 Jun 2007)
Last edited: hamishwillee (14 Jun 2012)

Overview

Switching application UI orientation between landscape and portrait

Description

By default, applications are started in the current orientation of the device screen.
In order to force an application to be started in landscape mode or portrait mode, a corresponding flag needs to be passed to the BaseConstructL() function in CAknAppUi::ConstructL():
    void CMyAppUi::ConstructL()
        {
        BaseConstructL( EAknEnableSkin | EAppOrientationLandscape );    // start in landscape mode
        ...
        }
To change the orientation while the application is running, call
    void CAknAppUiBase::SetOrientationL( TAppUiOrientation aOrientation );
with either EAppUiOrientationLandscape or EAppUiOrientationPortrait as a parameter. Note that these are not the same enumeration values as those passed to BaseConstructL().

This page was last modified on 14 June 2012, at 10:37.
391 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