this is a very general Question to LWUIT.
I'm developing for Nokia S40 phones.
I'm having a List in a form which functions as a Menu. The Form
has an ActionListener
which listens to SoftkeyEvents
and also the List
click events.
It's doing this by e.g.:
if (evt.getCommand() != null) {
if (evt.getCommand().getCommandName().equals("Back")) {
if (Display.getInstance().getCurrent().getUIID().equals("SubMenu")) {
and:
if (Display.getInstance().getCurrent().getUIID().equals("Menu") ) {
The problem is: the menu seems to be hypersensitive to scrolling but not sensitive enough to clicking.
Means: If you try to click a menu entry in the List, the List very often scrolls instead of actually catching the link.
Is there some way to influence this behaviour?