Mohsen Bahman
Mohsen Bahman

Reputation: 1092

How to make call directly without using calling intent?

Can I make a call directly without calling dial intent?

I want to use this calling way to create a call manager.

What are some different ways of making a call?

Upvotes: 2

Views: 1157

Answers (2)

Mahaveer Muttha
Mahaveer Muttha

Reputation: 1727

As per my knowledge this is not possible from an SDK application. You have to use Intent.ACTION_CALL. for making call..

Upvotes: 1

Blackbelt
Blackbelt

Reputation: 157487

No, you have to use the Intent.ACTION_CALL. That's the only way:

Intent dialIntent = new Intent(Intent.ACTION_CALL);
dialIntent.setData(Uri.parse("tel:000000"));
startActivity(dialIntent);

Upvotes: 4

Related Questions