Skype的表现作为选件从Android应用程序时,拨号 [英] show skype as option when dialing from android application

查看:175
本文介绍了Skype的表现作为选件从Android应用程序时,拨号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要显示在拨号选项的列表Skype作为这个图片从拨号时我的应用程序。我哪里需要改变?

I want to show skype in the dialing option list as this image when dialing from my application. Where I need to change?

很抱歉,如果这个问题是太天真了。

Sorry if the question is too naive.

推荐答案

我不熟悉的Skype应用程序,但我相信它正在利用Android的意图制度:的 http://developer.android.com/guide/topics/intents/intents-filters.html

I'm not familiar with the Skype application, but I assume it is taking advantage of Android's Intent system: http://developer.android.com/guide/topics/intents/intents-filters.html

您是否尝试过这样的:

Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:+123456789"));
startActivity(intent);

这篇关于Skype的表现作为选件从Android应用程序时,拨号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆