How to launch an Activity from another Application in Android

后端 未结 12 1422
春和景丽
春和景丽 2020-11-21 06:02

I want to launch an installed package from my Android application. I assume that it is possible using intents, but I didn\'t find a way of doing it. Is there a link, where t

12条回答
  •  情深已故
    2020-11-21 06:48

    If you know the data and the action the installed package react on, you simply should add these information to your intent instance before starting it.

    If you have access to the AndroidManifest of the other app, you can see all needed information there.

提交回复
热议问题