Launch Skype from an App Programmatically & Pass Number - Android
问题 Trying to launch and pass tel. no. to skype by this code from my app: PackageManager packageManager = getPackageManager(); Intent skype = packageManager.getLaunchIntentForPackage(\"com.skype.raider\"); skype.setData(Uri.parse(\"tel:65465446\")); startActivity(skype); Skype is launched but it can\'t catch the number. 回答1: This code works for me to start a call between two Skype users: Intent sky = new Intent("android.intent.action.VIEW"); sky.setData(Uri.parse("skype:" + user_name));