问题
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.
回答1:
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
Have you tried something like:
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:+123456789"));
startActivity(intent);
来源:https://stackoverflow.com/questions/6318035/show-skype-as-option-when-dialing-from-android-application