Namespaces
Variants
Actions

Archived:Application and view IDs changed in S60 2nd Edition initial release (Known Issue)

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}}.

The article is believed to be still valid for the original topic scope.
Article Metadata

Tested with
Devices(s): Nokia 6600 3.42.1, Nokia 6630 3.45.113

Compatibility
Platform(s): S60 2nd Edition and onwards

Article
Created: User:Technical writer 1 (07 Jul 2005)
Last edited: hamishwillee (15 Jun 2012)

Contents

Overview

S60 ROM applications have changed in S60 2nd Edition. Some of the documented IDs launch different views. The same functionalities require new IDs.

Description

  • Phonebook focused view works differently.
  • Calendar application day view works only if the calendar is already open in the background.
  • Camera application has been replaced with Camcorder.
  • Recorder application does not contain Filelist view.
    View activation is a S60 feature and does not work with Series 80 and Nokia 7710.

How to reproduce

The sample application MyView "start recording menu" freezes devices compatible with S60 2nd Edition.

Solution

The following code starts the recorder and records immediately:
// Recorder application UID
const TUid KRecorderUid = { 0x100058CA };
// UID for recording view
const TUid KRecorderViewUid = { 1 };
// MessageUid which start the recording
const TUid KRecorderMessageUid = { 2 };

// In AppUi class implementation
ActivateViewL(TVwsViewId(KRecorderUid, KRecorderViewUid),
                       KRecorderMessageUid, KNullDesC8);

The following code launches the Camera:
// Camcorder application UID
const TUid KCamcorderUid = { 0x101F857A };
// UID the camera view
const TUid KcameraView = { 1 };

ActivateViewL(TVwsViewId(KCamcorderUid, KCameraView));

See also Fetching device model information.

This page was last modified on 15 June 2012, at 09:36.
400 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