3

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

0

1 Answer 1

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

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.