
Originally Posted by
raj_J2ME
Hi,
Let me move step by step,
@ There is not center command..just center key is used for selection..
@ No I guess that can not be done..You can add the command only on the soft keys..
Hope this can help you,
Thanks,
Well for some items in a Form you can customize the select key's label using setDefaultCommand(...):
Code:
//For example, in a DateField
public DateField df=new DateField("DateField Example 1", DateField.DATE_TIME);
public Command sel=new Command("My Label", Command.SCREEN, 1);
df.setDefaultCommand(sel);