I'm stuck in the middle of j2me project because I have no idea how to do something that would be easily done in other platforms, but that doesn't seem to have a direct solution in java me/j2me.
What I need to do is this (it doesn't matter if it is with Netbeans MIDP components, LWUIT or plain lcdui)
I have to display a list of customers (read from a web service) in some sort of table, and when the user navigates up or down the rows, a "Details" command must be shown so that the user can see the details for that specific customer. Something like this image:
I know I can always use a List, but the problem is that Lists only allow a single "cell" per item, which is not very visually attractive as a table.
As always any help will be GREATLY appreciated.
Thank in advance.
as i see it you have 2 options (i use LWUIT)
either allow the user to click the cell thah the chose in the list and move to another screen where the details is shown. i do exactly the same in my project.
add the "details" command as you did here, and when the user will click the left button for the command in the actionPerformed method you will check which cell is chosen and switch to the details screen
i think the second option is less intuitive for the user, just let him click and choose the right row