如何从代码启动另一个Android应用程序

时间:2012-01-25 10:41:30

标签: android

  

可能重复:
  Android Launch an application from another application

我想使用Android代码启动我的另一个Android应用程序(.apk)。可能吗 ? 我有一种背景类型的Android应用程序(服务)。它是单独的Android应用程序。我想从我的另一个Android应用程序启动此应用程序。

1 个答案:

答案 0 :(得分:5)

试试这个:

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

了解更多:Launch an application from another application on Android