开发一个应用程序,其中我有许多用户的 account_id(skype id),现在我想要的是当我从我的应用程序中单击特定用户的 skype_id 时打开 Skype 的聊天屏幕(已安装在设备中)。
我在网上搜索但没有成功获得链接如何在 Skype 上开始通话但聊天?
开发一个应用程序,其中我有许多用户的 account_id(skype id),现在我想要的是当我从我的应用程序中单击特定用户的 skype_id 时打开 Skype 的聊天屏幕(已安装在设备中)。
我在网上搜索但没有成功获得链接如何在 Skype 上开始通话但聊天?
您可以为此使用 Skype URI 方案 (Skype:echo123?chat)。
您可以在此处找到有关 URI 方案的更多信息:https ://dev.skype.com/skype-uri
谢谢
Allen Smith Skype 开发人员支持经理
以下是打开 Skype 聊天对话的代码:
private void openSkype(Context context) {
// Make sure the Skype for Android client is installed
if (!isSkypeClientInstalled(context)) {
goToMarket(context);
return;
}
final String mySkypeUri = "skype:echo123?chat";
// Create the Intent from our Skype URI.
Uri skypeUri = Uri.parse(mySkypeUri);
Intent myIntent = new Intent(Intent.ACTION_VIEW, skypeUri);
// Restrict the Intent to being handled by the Skype for Android client only.
myIntent.setComponent(new ComponentName("com.skype.raider", "com.skype.raider.Main"));
myIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
try {
context.startActivity(myIntent);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Determine whether the Skype for Android client is installed on this device.
*/
public boolean isSkypeClientInstalled(Context myContext) {
PackageManager myPackageMgr = myContext.getPackageManager();
try {
myPackageMgr.getPackageInfo("com.skype.raider", PackageManager.GET_ACTIVITIES);
} catch (PackageManager.NameNotFoundException e) {
return (false);
}
return (true);
}
/**
* Install the Skype client through the market: URI scheme.
*/
public void goToMarket(Context myContext) {
Uri marketUri = Uri.parse("market://details?id=com.skype.raider");
Intent myIntent = new Intent(Intent.ACTION_VIEW, marketUri);
myIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
myContext.startActivity(myIntent);
}