Does anyone know if it is possible to open up skype lite chat using
intents or some other API?
Suppose I wanted to create a short cut for a contact and I had their
skypename or skype id or skype email.
Would it be possible to do something like:
Intent i = new Intent(
Intent.ACTION_VIEW,
Uri.parse("skype:ladiesman217?chat")
);
i.setComponent(
new ComponentName(
"com.skype.android.lite",
"com.skype.android.lite.SkypeActivity")
);
startActivity(i);
I've pinged the Skype developer community about this with no results,
has anyone had any lucky with this?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---