hi all i'm going to make application on j2me Using canvas.... I want to take textbox or textfield on my canvas .. so plz tell me how to do this.
Thanks... Neel
hi all i'm going to make application on j2me Using canvas.... I want to take textbox or textfield on my canvas .. so plz tell me how to do this.
Thanks... Neel
You can draw a basic textbox and display a string , and when it receives focus, you can switch the view to that particular textbox ,something like this
textBox = new TextBox(....);
Midlet.display.setCurrent(textBox);
This would create your data entry more robust and save you from the pain of implementing various keyboard issues yourselves