> Is it possible to have keyPressed() in J2ME List?
No. keyPressed() is a method of javax.microedition.lcdui.Canvas.
javax.microedition.lcdui.List does *not* extend Canvas in the
specification, so how could it provide Canvas's methods?
> Is commandAction() is
> the only Listener method?
commandAction is the only method invoked by a Displayable object when a
Command has been fired, yes.

Signature
Darryl L. Pierce <mcpierce@gmail.com>
Homepage: http://mcpierce.multiply.com/
"McVeigh's lawyer got him the death penalty, which, quite frankly,
I could have done." - Jon Stewart
Natasha - 22 Feb 2006 05:13 GMT
Thanks for the reply.... My problem is that when the user presses the
Last item of the List and still presses the down arrow, the first item
has to be selected? I s there any solution?
Paul Hamaker - 22 Feb 2006 08:45 GMT
This behavior is up to the device, only way I can think of is mimicking
a list on a Canvas, but whether that's worth the effort ?
--------------------
Paul Hamaker, SEMM, teaching ICT since 1987
http://javalessons.com
Darryl L. Pierce - 22 Feb 2006 14:01 GMT
> Thanks for the reply.... My problem is that when the user presses the
> Last item of the List and still presses the down arrow, the first item
> has to be selected? I s there any solution?
Not really, no. Why is circumnavigating the list a problem?

Signature
Darryl L. Pierce <mcpierce@gmail.com>
Homepage: http://mcpierce.multiply.com/
"McVeigh's lawyer got him the death penalty, which, quite frankly,
I could have done." - Jon Stewart
Natasha - 22 Feb 2006 14:10 GMT
Thank You so much!!!!!!!!!