3

I want to open an .ics file & i want to make sure that particular app should do that using intent

bkshukla
  • 179
  • 5
  • 19

1 Answers1

4

For opening another app:

Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("package.name.of.destination.app");
                    startActivity(LaunchIntent);

Form there the control goes to that app, so if you wanna give some effects, you have to do it in the target app

Manoj Kumar
  • 1,510
  • 3
  • 20
  • 40