Making a phone call programmatically using platformRequest() in Java ME
m (Mtilli -) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Adding missing translation link) |
||
| (6 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | [[Category:Java ME]][[Category:Telephony]][[Category:MIDP 2.0]][[Category:Code Examples]][[Category:Series 40 5th Edition (initial release)]][[Category:Series 40 6th Edition (initial release)]][[Category: | + | [[Category:Java ME]][[Category:Telephony]][[Category:MIDP 2.0]][[Category:Code Examples]][[Category:Series 40 5th Edition (initial release)]][[Category:Series 40 6th Edition (initial release)]][[Category:Symbian]][[Category:Series 40 3rd Edition (initial release)]][[Category:Series 40 Developer Platform 1.0]][[Category:Java Runtime 2.3 for Symbian]][[Category:S60 3rd Edition (initial release)]][[Category:S60 3rd Edition FP1]][[Category:S60 3rd Edition FP2]][[Category:S60 5th Edition]][[Category:Symbian^3]][[Category:Symbian Anna]][[Category:Nokia Belle]] |
| − | + | ||
| − | + | ||
| − | + | ||
{{ArticleMetaData <!-- v1.2 --> | {{ArticleMetaData <!-- v1.2 --> | ||
|sourcecode= [[Media:MakingPhoneCall-Java.zip]] | |sourcecode= [[Media:MakingPhoneCall-Java.zip]] | ||
| Line 8: | Line 5: | ||
|devices= Nokia N95 8GB, Nokia 701, Nokia Asha 305 | |devices= Nokia N95 8GB, Nokia 701, Nokia Asha 305 | ||
|sdk= [http://www.developer.nokia.com/Develop/Java/Tools/ Nokia SDK 2.0 for Java], | |sdk= [http://www.developer.nokia.com/Develop/Java/Tools/ Nokia SDK 2.0 for Java], | ||
| − | |||
|platform= Series 40, Symbian | |platform= Series 40, Symbian | ||
|devicecompatability= <!-- Compatible devices (e.g.: All* (must have GPS) ) --> | |devicecompatability= <!-- Compatible devices (e.g.: All* (must have GPS) ) --> | ||
| Line 26: | Line 22: | ||
|author= [[User:Tapla]] | |author= [[User:Tapla]] | ||
<!-- The following are not in current metadata --> | <!-- The following are not in current metadata --> | ||
| − | |||
|id= CS000956 | |id= CS000956 | ||
}} | }} | ||
==Overview== | ==Overview== | ||
| − | This snippet demonstrates how to make a phone call by using a platform request. The MIDlet constructs a menu item through which the user can call the specified number. After the platform request has been made, the user is prompted whether he or she wants to make a voice call, a video call, or an Internet call. | + | {{Abstract|This snippet demonstrates how to make a phone call by using a platform request.}} The MIDlet constructs a menu item through which the user can call the specified number. After the platform request has been made, the user is prompted whether he or she wants to make a voice call, a video call, or an Internet call. |
==Source== | ==Source== | ||
| Line 128: | Line 123: | ||
* [[Archived:Making a phone call using TextField in Java ME]] | * [[Archived:Making a phone call using TextField in Java ME]] | ||
| + | <!-- Translation --> [[pt:Realizando Chamadas Telefônicas a partir de platformRequest()]] | ||
Latest revision as of 08:55, 18 September 2012
Article Metadata
Code Example
Source file: Media:MakingPhoneCall-Java.zip
Installation file: Media:MakingPhoneCallBinaries.zip
Tested with
SDK: Nokia SDK 2.0 for Java,
Devices(s): Nokia N95 8GB, Nokia 701, Nokia Asha 305
Compatibility
Platform(s): Series 40, Symbian
Article
Keywords: javax.microedition.midlet.MIDlet.platformRequest()
Created: tapla
(07 May 2008)
Last edited: hamishwillee
(18 Sep 2012)
Contents |
Overview
This snippet demonstrates how to make a phone call by using a platform request. The MIDlet constructs a menu item through which the user can call the specified number. After the platform request has been made, the user is prompted whether he or she wants to make a voice call, a video call, or an Internet call.
Source
import javax.microedition.io.ConnectionNotFoundException;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.midlet.MIDlet;
public class ExampleMIDlet extends MIDlet implements CommandListener {
private Command callCommand;
private Command exitCommand;
private Form mainForm;
// The phone number to call
private final String PHONE_NUMBER = "123456789";
/**
* Constructor. Constructs the object and initializes displayables.
*/
public ExampleMIDlet() {
mainForm = new Form("ExampleMIDlet");
callCommand = new Command("Call", Command.SCREEN, 0);
mainForm.addCommand(callCommand);
exitCommand = new Command("Exit", Command.EXIT, 0);
mainForm.addCommand(exitCommand);
mainForm.setCommandListener(this);
}
/**
* Calls the specified number.
*/
private void call(String number) {
try {
platformRequest("tel:" + number);
} catch (ConnectionNotFoundException ex) {
System.out.println(ex.getMessage());
}
}
/**
* Called when the MIDlet is started.
*/
public void startApp() {
Display.getDisplay(this).setCurrent(mainForm);
}
/**
* Called when MIDlet is paused.
*/
public void pauseApp() {
}
/**
* Called to signal the MIDlet to terminate.
*
* @param unconditional if true, then the MIDlet has to be unconditionally
* terminated and all resources has to be released.
*/
public void destroyApp(boolean unconditional) {
}
/**
* From CommandListener.
* Called by the system to indicate that a command has been invoked on a
* particular displayable.
* @param command the command that was invoked
* @param displayable the displayable where the command was invoked
*/
public void commandAction(Command command, Displayable displayable) {
if (command == callCommand) {
call(PHONE_NUMBER);
} else if (command == exitCommand) {
// Exit the MIDlet
destroyApp(true);
notifyDestroyed();
}
}
}
Postconditions
The user can select Call to call the specified number. He or she may also select whether the call should be a voice call, a video call, or an Internet call.

