I have Skype Mobile installed on my phone, and would like an
application I am writing to dial a phone number through Skype.  How do
I do this? I have tried using a URI such as skype:8005551212?call with
ACTION_CALL and ACTION_VIEW, but I keep getting "No application to
handle intent" errors.  Any ideas? Mark Murphy suggested in a similar
post that Skype would know, but their documentation doesn't seem to
cover this.
Thanks!

This is what didn't work, but gives the gist of what I'm trying to
do...

                        Intent call = new Intent(Intent.ACTION_CALL);
                        call.setData(Uri.parse("skype:"+phonenumber+"?call"));
                        call.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                        startActivity(call);

-- 
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.

Reply via email to