I have a textfield with phone number. All I want to do is when the textfield is focused and call button is pressed, application must be paused and call should be made to the phone number of the textfield using platformRequest API.
I want to do it in lwuit. Can anyone suggest a idea how to do this?
Sample code would be appreciated.
Also you can do without extend MIDlet using this:
String telNo = "tel no";
Display.getInstance().execute("tel:" + telNo);