Categories: Symbian C++ | Code Examples | How To | Client/Server | UI | Screen Savers | Themes
This page was last modified 09:36, 26 November 2007.
How to change the Wallpaper
From Forum Nokia Wiki
_LIT(kImgKey, "IdleImg"); _LIT(kIndexKey, "IdleIndex"); _LIT(kDimIndexKey, "DimIndex"); _LIT(kPathKey, "IdlePath"); _LIT(kPathValueKey, "c:\\system\\data\\backgroundimage.mbm"); RSharedDataClient sharedClient; CleanupStack::PushL(&sharedClient); const TUid idleUid = {0x10005a32}; if(sharedClient.Assign(idleUid)==KErrNone) { sharedClient.SetInt(kImgKey, 1); sharedClient.SetInt(kIndexKey, 0); sharedClient.SetInt(kDimIndexKey, 1); sharedClient.SetString(kPathKey, kPathValueKey); } sharedClient.Close();
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Selecting your ringtone from J2ME | deps777 | Mobile Java General | 1 | 2007-02-14 13:54 |
| Problems with SonyEricssonP900 wallpaper | danielsbv | Digital Rights Management & Content Downloading | 1 | 2004-11-16 21:07 |
| Using gif image as wallpaper.... | SkyWire | General Discussion | 1 | 2004-05-10 06:00 |
| Wallpaper real size on series 60 | frogi | General Symbian C++ | 2 | 2004-02-20 08:58 |
| "image/vnd.nok-wallpaper" does not work on 7650 & 3650 | singernot | Digital Rights Management & Content Downloading | 1 | 2003-04-04 08:11 |
