Namespaces
Variants
Actions
(Difference between revisions)

Archived:Displaying the name of the active language of a Symbian device

Jump to: navigation, search
(Debjit.roy -)
Line 1: Line 1:
[[Category:Symbian C++]][[Category:S60]][[Category:S60 3rd Edition]][[Category:S60 3rd Edition, Feature Pack 1]][[Category:Technical Solution]][[Category:Code Examples]][[Category:Base/System]]
+
[[Category:Symbian C++]][[Category:S60]][[Category:S60 3rd Edition]][[Category:S60 3rd Edition FP1]][[Category:Technical Solution]][[Category:Code Examples]][[Category:Base/System]]
 
{{KBTS}}
 
{{KBTS}}
 
__NOTOC__
 
__NOTOC__

Revision as of 08:03, 9 May 2012

Template:KBTS


Article Metadata

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

Article
Created: User:Technical writer 1 (30 May 2008)
Last edited: hamishwillee (09 May 2012)
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}}.

Description

The following code can be used to retrieve the default language of the device:

Header files:

akninputlanguageinfo.h

Library:

akninputlanguage.lib

Capability:

None

 TDes& language;
TLanguage languageId;
languageId = User::Language();
CAknInputLanguageInfo* Langg =
AknInputLanguageInfoFactory::CreateInputLanguageInfoL();
if(Langg)
{
CleanupStack::PushL(Langg);
language.Append(Langg->LanguageName(languageId));
CleanupStack::PopAndDestroy(Langg);
CEikonEnv::InfoWinL(_L("Phone Language is:"), language);
}
145 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