Isaac Wagner wrote: > In the Android docs for the CALL_PHONE permission it says: Allows an > application to initiate a phone call without going through the Dialer > user interface for the user to confirm the call being placed. > > So, my question is, how do I make a phone call through the API without > it bringing up the dialer interface? It sounds like this should be > possible.
startActivity(new Intent(Intent.ACTION_CALL, "tel:...")); -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Training...At Your Office: http://commonsware.com/training -- 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 To unsubscribe, reply using "remove me" as the subject.

