Archived:A long Form takes a long time on the Nokia E61, E61i, E62 (Known Issue)
m |
hamishwillee
(Talk | contribs) m (moved A long Form takes a long time on the Nokia E61, E61i, E62 (Known Issue) to Archived:A long Form takes a long time on the Nokia E61, E61i, E62 (Known Issue)) |
||
| (9 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
| − | {{ | + | {{Archived|timestamp=20120419194305|user=[[User:Lpvalente|Lpvalente]]}} |
| − | + | [[Category:Known Issue]][[Category:Java ME]][[Category:MIDP 2.0]][[Category:S60 3rd Edition (initial release)]][[Category:Code Examples]] | |
| − | + | ||
| − | + | ||
| − | | | + | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |- | + | {{ArticleMetaData <!-- v1.2 --> |
| − | | | + | |sourcecode= [[Media:FormScrollingTest.zip]] |
| − | ===== | + | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> |
| − | | | + | |devices= Nokia E61, Nokia E61i, Nokia E62 |
| + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> | ||
| + | |platform= S60 3rd Edition | ||
| + | |devicecompatability= <!-- Compatible devices (e.g.: All* (must have GPS) ) --> | ||
| + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | ||
| + | |signing= <!-- Empty or one of Self-Signed, DevCert, Manufacturer --> | ||
| + | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
| + | |keywords= <!-- APIs, classes and methods (e.g. QSystemScreenSaver, QList, CBase --> | ||
| + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| + | |translated-by= <!-- [[User:XXXX]] --> | ||
| + | |translated-from-title= <!-- Title only --> | ||
| + | |translated-from-id= <!-- Id of translated revision --> | ||
| + | |review-by= <!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by= <!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate= 20070510 | ||
| + | |author= [[User:Technical writer 1]] | ||
| + | <!-- The following are not in current metadata --> | ||
| + | |subcategory= MIDP1.0/2.0 | ||
| + | |id= KIJ000636 | ||
| + | }} | ||
| − | + | ==Description== | |
| − | + | {{Abstract|Scrolling a long Form (100+ items) takes a long time, especially during changes between different elements, e.g. ChoiceGroup to TextField, and from similar elements with different formatting constraints.}} | |
| − | + | ||
| − | | | + | |
| − | + | For example, from a TextField.URL masked field to a TextField.PHONENUMBER masked field. | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | According to the MIDP specification, class javax.microedition.lcdui.Form javadoc: | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | <pre>"Notes for Application Developers: | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | Although this class allows creation of arbitrary combination of components the application developers should keep the small screen size in mind. | |
| − | + | Form is designed to contain a small number of closely related UI elements." | |
| − | + | </pre> | |
| − | + | ||
| − | + | Therefore, in order to avoid this problem, use other forms of displaying large amounts of content, such as custom items, combined with search and paging algorithms. | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ==How to reproduce== | |
| − | + | The attached application [[Media:FormScrollingTest.zip|FormScrollingTest]] can be used for testing this issue. | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | + | ||
| − | [[ | + | |
Latest revision as of 09:16, 15 June 2012
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.
The article is believed to be still valid for the original topic scope.
Article Metadata
Code Example
Source file: Media:FormScrollingTest.zip
Tested with
Devices(s): Nokia E61, Nokia E61i, Nokia E62
Compatibility
Platform(s): S60 3rd Edition
Article
Created: User:Technical writer 1
(10 May 2007)
Last edited: hamishwillee
(15 Jun 2012)
Description
Scrolling a long Form (100+ items) takes a long time, especially during changes between different elements, e.g. ChoiceGroup to TextField, and from similar elements with different formatting constraints.
For example, from a TextField.URL masked field to a TextField.PHONENUMBER masked field.
According to the MIDP specification, class javax.microedition.lcdui.Form javadoc:
"Notes for Application Developers: Although this class allows creation of arbitrary combination of components the application developers should keep the small screen size in mind. Form is designed to contain a small number of closely related UI elements."
Therefore, in order to avoid this problem, use other forms of displaying large amounts of content, such as custom items, combined with search and paging algorithms.
How to reproduce
The attached application FormScrollingTest can be used for testing this issue.

