如何在android而不是skype或其他应用程序中只打开内置调用应用程序

时间:2015-12-30 06:41:01

标签: android android-intent

private void makeCall() {
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:" + phoneNumber));
if (intent.resolveActivity(getPackageManager()) != null) {
    startActivity(intent);
   }
}

我想只打开手机内置的通话应用,而不是Skype或其他应用程序。

0 个答案:

没有答案