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
  • 29,392
  • 25
  • 90
  • 143

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
  • 17,493
  • 11
  • 81
  • 103