In Android, we can call any phone number by using Intent.ACTION_CALL. To call a phone number we need to access uses permission.
Here is the code that shows you how to call a particular phone number
[sourcecode language="java"]
public class ExampleApp extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
startActivity(new Intent(Intent.ACTION_CALL, Uri.parse("tel:8304600889" )));
}
}
[/sourcecode]
Here the sample phone number is '8304600889'.