I would like to use the explication intent to run a specific number in the softphone application. An implicit application will look like this:
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse(phone));
startActivity(callIntent);
Running an explicit application looks something like this:
Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("example.app");
startActivity(LaunchIntent);
Question: Is it possible to pass Uri and run the application with ACTION_CALL using explicit intent?
source
share