I am developing an application that at one point displays to the user
a text field to insert a phone number and a dial button.

The application currently displays the built-in call screen making the
call using the following code:

"Intent intent = new Intent("android.intent.action.CALL", Uri.parse
("tel:5551222"));
startService(intent);"

The permissions to dial the call have been added to the
AndroidManifest.xml.

My question is:
Would it be possible to perform a call in the background, without
changing the screen where the application is currently in i.e. without
displaying the in-built Android call screen?

Thanks in advance

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to