【发布时间】:2011-06-11 19:23:17
【问题描述】:
从我的应用程序拨号时,我想在拨号选项列表中将 Skype 显示为this image。我需要改变哪里?
对不起,如果这个问题太天真了。
【问题讨论】:
从我的应用程序拨号时,我想在拨号选项列表中将 Skype 显示为this image。我需要改变哪里?
对不起,如果这个问题太天真了。
【问题讨论】:
我不熟悉 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);
【讨论】: