JAVA ME - LWUIT List index problem and Is a bug of LWUIT List?

I write j2me application that display list with labels and I add images to the labels and show it. I handle event for List with Action Listener. When I press label in List, event is handle by Action Listener. But when List is less than 7 labels(I mean 7 items in List), the last item(I mean last label in List) doesn't produce event and that cannot be handle with Action Listener. But when List is larger than 7 items, that OK to handle all items in List. Please help me what is going on LWUIT list. Is it a bug of LWUIT List?

This question and answers originated from www.stackoverflow.com
Question by (9/15/2011 11:49:58 AM)

Answer

There is no such known issue in LWUIT. You would need to provide an example. I would suggest you make sure that your list is laid out correctly and that its parent container isn't scrollable if its within a border layout.

Answer by

Find More Answers
Related Topics  java-me  lwuit
Related Questions
  • Remove Index in lwuit list

    I have created List using LWUIT. but is shows me item with index. like item-1 item-2 item-3 I want to remove left side index 1,2,3 how can I do that? Code: class mainForm …
  • LWUIT list items

    i need to add in list components that are not equal in height, is there a way for it to work?
  • How to center align a list using LWUIT

    i am having problem aligning a list items to center. plz help me. here is the code i have done. import com.sun.lwuit.Command; import com.sun.lwuit.Component; import com.sun.lwuit.Display; import …
  • List with checkbox using lwuit in j2me

    I am using LWUIT for getting a search facility for selection in the list. now i want to know how to display the list with checkbox? list=new List(vector); cform.addComponent(list); cform.addCompo…
  • How to create a multiSelectable List or a checkBoxGroup in LWUIT?

    I am working on LWUIT 1.4 and in my current application I want to display a list to the user and user can select choices as many as possible.. For other simple cases (where only single selection is …
  • LWUIT : Form Problem

    i have started using LWUIT which sounds interesting , i have made a form and has simply added an image to its background , my problem is that the image is getting streched and looks bad :D is there …
  • LWUIT : arabic font problem

    Hi how can i add arabic Characters to bitmap font and show in application ? how can i do it on localization section ? when i use system font it`s shows seprated and reserved on some phones , i want …
  • LWUIT and kXML Parser

    Uncaught exception: java.lang.Error: Static initializer: java.lang.NullPointerException, 0 - java.lang.Class.throwError(), bci=57 - java.lang.Class.initialize(), bci=221 - com.sun.lwuit.Componen…
  • ZXING and LWUIT

    I am using LWUIT to develop ZXING application which stops taking video when video come across with a QR code. I have seen j2me codes for zxing. Unforunately I found out that I cannot use some codes …
  • Lwuit: Use of PeerComponent

    I want to use a PeerComponent in my Lwuit application for using a native Blackberry Field like this example: Player player = Manager.createPlayer("capture://video"); player.realize(); VideoContro…