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. Does anyone have a link, where to find the information?

Thanks

link|improve this question
1  
It's very useful question. – SpK Nov 14 '11 at 10:07
feedback

3 Answers

If you do not know the main activity, from packagename can be started the application.

Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.package.address");
startActivity( LaunchIntent );
link|improve this answer
Saved me tons of time, thanks and +1! – Justin Jan 27 at 14:32
feedback

I found the solution. In the manifest file of the application I found the package name: com.package.address and the name of the main activity which I want to launch: MainActivity The following code starts this application:

Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName("com.package.address","com.package.address.MainActivity"));
startActivity(intent);
link|improve this answer
Thanks for the answer! – hopia Jun 30 '11 at 6:09
feedback

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.

link|improve this answer
Thanks for the reply. Yes I have the AndroidManifest of the other application. What I try to do now is the following code: Intent intent = new Intent(Intent.ACTION_MAIN); intent.setComponent(new ComponentName("com.package",".MainActivity")); startActivity(intent); but in this way it is not working. Can you give me a more precise link, how to do it? – Bastian Oct 6 '10 at 13:21
What is the error message you have in your LogCat? – WarrenFaith Oct 6 '10 at 13:24
The application crashes at the line "startActivity...": The application has stopped unexpectedly. Pleas try again. Where can I see the error in LogCat? – Bastian Oct 6 '10 at 13:38
1  
I found the error: When setting the component, the fully qualified class name instead of just the class has to be named: intent.setComponent(new ComponentName("com.package","com.package.MainActivity")) instead of intent.setComponent(new ComponentName("com.package",".MainActivity")) – Bastian Oct 6 '10 at 13:54
Good to know... You can find the LogCat on eclipse: Window > Show view > Other, Android > Logcat – WarrenFaith Oct 6 '10 at 18:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.