Open Another App Within A Fragment
I am creating an app to run multiple tasks within a same activity. I am achieving this using fragments. Now, I want to run a game which is installed on my phone in a fragment withi
Solution 1:
You can't. You can only add or replace the contents of a fragment container with a fragment, and even then, you can't take another installed app's fragment and add it to your view.
Post a Comment for "Open Another App Within A Fragment"