0

Possible Duplicate:
Android Launch an application from another application

I want to start Another of my Android Application ( .apk ) using Android code. is it possible ? I have one background kind of Android Application ( Service ). It is separate Android Application. I want to start this Application from my Another Android Application.

Community
  • 1
  • 1
Lucifer
  • 28,933
  • 23
  • 88
  • 140

1 Answers1

5

try this :

Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.package.address");
startActivity( LaunchIntent );

for more :Launch an application from another application on Android

Community
  • 1
  • 1
Maher Abuthraa
  • 16,698
  • 10
  • 75
  • 102