How to access another third party application from my application in android?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You must start by creating an intent.
If the activity launched has to return a result, you start your activity by calling the method startActivityForResult, and you will receive the result in the method onActivityResult. If you aren’t waiting result from this activity, just call startActivity.
In those method calls, you ‘ll have to pass your intent in the parameters.
In this example, i call the android gallery to allow the user to choose an image.
Then, i receive the image choosen by the user, resulting of the previous activity: