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,605
  • 21
  • 86
  • 137

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
  • 15,704
  • 9
  • 68
  • 97