Android - 启动Intent作为新应用

时间:2012-04-09 15:40:54

标签: android android-intent media-player background-process

是否可以将Intent作为新应用程序启动?

通缉行为:

  • 用户点击我的应用中的按钮。
  • 启动媒体播放器Intent并播放所需的媒体。
  • 用户长按主页按钮。在此菜单中,我想看到两者媒体播放器和我的应用。我希望用户能够听音乐 使用他想要的媒体播放器并能够将我的应用放在前台。

由于

1 个答案:

答案 0 :(得分:1)

我不确定,因为我从未使用它,但我想你可以使用意图标志FLAG_ACTIVITY_NEW_TASK。

Intent intent = your intent;
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)

有关详细信息,请参阅http://developer.android.com/reference/android/content/Intent.html#FLAG_ACTIVITY_NEW_TASK

干杯