7

我正在尝试从我的 Android 应用程序启动 Skype 意图,并传递一个电话号码。到目前为止,感谢其他在 stackoverflow 上有类似需求的人,我已经成功启动了 Skype,但我仍然无法传递电话号码。这是我正在使用的代码:

Intent sky = new Intent("android.intent.action.CALL_PRIVILEGED");
        sky.setClassName("com.skype.raider",
                "com.skype.raider.Main");
        sky.setData(Uri.parse("tel:" + number));
        Log.d("UTILS", "tel:" + number);
        ctx.startActivity(sky);

发生的事情是 Skype 启动,但给了我一个祝酒词,说该号码无效,并建议我添加国际前缀。Log.d 给了我电话:+39........(这个号码有效,我也用它来

public static void call(String number, Context ctx) {
    try {
        Intent callIntent = new Intent(Intent.ACTION_CALL);
        callIntent.setData(Uri.parse("tel:" + number));
        ctx.startActivity(callIntent);
    } catch (ActivityNotFoundException e) {
        Log.e("helloandroid dialing example", "Call failed", e);
    }

}

事实上,当我去 Skype 的视图进行呼叫时,我看到它是由 +0 组成的所以在我看来,我以错误的方式传递电话号码,或者传递给错误的 Activity....任何帮助将不胜感激!同时,我只想说 StackOverflow 简直就是摇滚。

4

4 回答 4

17

看到这个答案:https ://stackoverflow.com/a/8844526/819355

Jeff 建议使用 askype:<user name>而不是tel:<phone number>

在使用 apktool 对 skype apk 进行了一些研究后,正如该答案中所建议的那样,我想出了这段代码,对我来说它正在工作:

public static void skype(String number, Context ctx) {
        try {
            //Intent sky = new Intent("android.intent.action.CALL_PRIVILEGED");
            //the above line tries to create an intent for which the skype app doesn't supply public api

                Intent sky = new Intent("android.intent.action.VIEW");
            sky.setData(Uri.parse("skype:" + number));
            Log.d("UTILS", "tel:" + number);
            ctx.startActivity(sky);
        } catch (ActivityNotFoundException e) {
            Log.e("SKYPE CALL", "Skype failed", e);
        }

    }
于 2012-06-21T08:16:56.257 回答
7

请参阅 Skype 开发者:Skype URI 教程:Android 应用程序 还记得在你的 url 中添加“?call”。例如

intent.setData(Uri.parse("skype:" + phoneNumber + "?call"));

没有它,Skype 可能无法拨打该号码。

于 2014-04-05T01:12:32.717 回答
4

调用外部应用程序时不应包含特定类。让用户决定他/她想要使用的应用程序。这就是 android 的设计方式,它是一个比强迫人们使用软件更好的解决方案(而且在我看来,这是一个相当缓慢、封闭和不方便的应用程序)。

换句话说,只需使用 Uri,这就是 Skype 声明其捕获此类意图的能力的工作。

于 2012-04-12T22:08:18.630 回答
0

请参阅此 Skype 文档链接Skype URI 教程:Android 应用

首先需要检查Skype是否安装或没有使用

/**
 * 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);
}

使用启动 Skype uri

/**
 * Initiate the actions encoded in the specified URI.
 */
public void initiateSkypeUri(Context myContext, String mySkypeUri) {

  // Make sure the Skype for Android client is installed.
  if (!isSkypeClientInstalled(myContext)) {
    goToMarket(myContext);
    return;
  }

  // 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);

  // Initiate the Intent. It should never fail because you've already established the
  // presence of its handler (although there is an extremely minute window where that
  // handler can go away).
  myContext.startActivity(myIntent);

  return;
}

如果未安装 Skype,则使用重定向到市场

/**
 * 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);

  return;
}
于 2020-04-16T07:56:46.970 回答