I am a beginner in android , how can I start one app from inside another in android like when I click on one button and I have to start activity of another app
Asked
Active
Viewed 61 times
0
-
Post code of what you have done so far? – Aman Singh Aug 05 '14 at 11:16
-
one googles it and finds this as the first result: http://stackoverflow.com/questions/3872063/launch-an-application-from-another-application-on-android – Daniel Casserly Aug 05 '14 at 11:16
1 Answers
1
You can start another app from you application using intent but you need to know its main activity name or at least that applications package name , in the following example it uses another apps package name to start
Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.package.address");
startActivity(LaunchIntent);

Renjith K N
- 2,613
- 2
- 31
- 53
-
@user3652673 please accept the answer if its the one you are looking for, thank you.. – Renjith K N Aug 05 '14 at 11:25