No Activity found to handle Intent { act=android.intent.action.DIAL }
问题 I want to open my phone dialer .But it shows error. I have declared permissions for CALL_PHONE on Android Manifest and also declared class in Android Manifest. case R.id.action_call: Log.d("Action_call","INside Action call"); Intent dialer = new Intent(Intent.ACTION_DIAL); startActivity(dialer); return true; 回答1: You don't need any permissions for ACTION_DIAL Intent. So remove CALL_PHONE permission from AndroidManifest.xml . You have not pass any number to fire dial Intent. Use tel: followed