Hi!
I hope this is a simple question which can be solved using the high-level API.
I have a list with several items and I would like to select an item of the list and simply press the default select button on my phone to run a command. The default select button on my SE-K750i is a round button which you use as a joystick.
Now I have to go to the menu on my phone by using a soft key and select the command there among all other commands.
I thought setting the priority of the command to '0' would solve it if the other commands have a higher priority, but it doesn't seem so.
Any ideas?
I have a list:
public list my_list = new list("title", Choice.IMPLICIT);
Populate it:
for (int i=0; i<list.length; i++)
my_list.append(list,null);
Add a command:
my_list.addCommand(my_command);
my_list.setCommandListener(this);
Command object:
my_command = new Command("Select", "Select Equity", Command.ITEM, 0);
Thanks for any input.
With kind regards
/Jokerman
