我想从我的应用程序拨号时,在拨号选项列表中将Skype显示为this image。我需要改变的地方?
如果问题太天真,请抱歉。
答案 0 :(得分:1)
我不熟悉Skype应用程序,但我认为它正在利用Android的Intent系统: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);