How To Make A Phone Call Programatically Without Intent
I'm new on android and i want make phone call without use the intent. I know that this code: Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse('tel:' + bund
Solution 1:
Can i make call in android programmatically without use "Intent"?
Not from an ordinary Android SDK app. A custom ROM mod certainly could.
Solution 2:
You can't, and that's a security feature.
See http://developer.android.com/reference/android/content/Intent.html#ACTION_CALL and http://developer.android.com/reference/android/content/Intent.html#ACTION_DIAL
Post a Comment for "How To Make A Phone Call Programatically Without Intent"