I have searched ALOT now, i cant find a solid way to run apps like calendar, camera, facebook, twitter, insatgram, and all kinds of apps in android. I know that i need to use intents, but HOW can i do it? I really need help! Please help me and thanks alot!
Share
If you want to launch some other application from your android application then you should know the package name for that particular application For example for launching facebook use
Otherwise this can also be used
If you want to launch the default android applications installed for some particular kind of operation then you can use implicit intents for that. For example to start a browser you can use
You should take also take a look at intents and intent filters and how to allow other apps to open your application.