Archived:Application and view IDs changed in S60 2nd Edition initial release (Known Issue)
m (Protected "KIS000262 - Application and view IDs have changed between S60 platform editions" [edit=sysop:move=sysop]) |
extkbeditor2
(Talk | contribs) m |
||
| Line 2: | Line 2: | ||
__NOTOC__ | __NOTOC__ | ||
__NOEDITSECTION__ | __NOEDITSECTION__ | ||
| − | {| | + | {{KnowledgeBase |
| − | | | + | |id=KIS000262 |
| − | + | |platform=S60 2nd Edition and onwards | |
| − | | | + | |devices=Nokia 6600 3.42.1, Nokia 6630 3.45.113 |
| − | + | |category= | |
| + | |subcategory= | ||
| + | |creationdate=July 7, 2005 | ||
| + | |keywords= | ||
| + | }} | ||
| − | + | ==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. | * Phonebook focused view works differently. | ||
* Calendar application day view works only if the calendar is already open in the background. | * Calendar application day view works only if the calendar is already open in the background. | ||
| Line 37: | Line 21: | ||
* Recorder application does not contain Filelist view.<br>View activation is a S60 feature and does not work with Series 80 and Nokia 7710. | * Recorder application does not contain Filelist view.<br>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:<br>// Recorder application UID<br>const TUid KRecorderUid = <nowiki>{</nowiki> 0x100058CA <nowiki>}</nowiki>;<br>// UID for recording view<br>const TUid KRecorderViewUid = <nowiki>{</nowiki> 1 <nowiki>}</nowiki>;<br>// MessageUid which start the recording<br>const TUid KRecorderMessageUid = <nowiki>{</nowiki> 2 <nowiki>}</nowiki>;<br><br>// In AppUi class implementation<br>ActivateViewL(TVwsViewId(KRecorderUid, KRecorderViewUid),<br> KRecorderMessageUid, KNullDesC8);<br><br>The following code launches the Camera:<br>// Camcorder application UID<br>const TUid KCamcorderUid = <nowiki>{</nowiki> 0x101F857A <nowiki>}</nowiki>;<br>// UID the camera view<br>const TUid KcameraView = <nowiki>{</nowiki> 1 <nowiki>}</nowiki>;<br><br>ActivateViewL(TVwsViewId(KCamcorderUid , KCameraView));<br><br>See also Fetching device model information. | |
| − | + | ||
| − | + | ||
| − | |||
[[Category:Known Issue]][[Category:Symbian C++]][[Category:S60 2nd Edition]] | [[Category:Known Issue]][[Category:Symbian C++]][[Category:S60 2nd Edition]] | ||
Revision as of 15:25, 21 October 2008
Article Metadata
Tested with
Compatibility
Article
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.

