从我的应用启动另一个应用

时间:2013-04-19 08:16:48

标签: android android-intent android-activity vlc

我想从我当前的活动中启动wondershare播放器并使其(奇迹播放播放器)使用一些传递的参数(通过调用)作为流式URL。

我在https://github.com/rauljim/tgs-android/blob/integrate_record/src/com/tudelft/triblerdroid/first/VideoPlayerActivity.java#L211找到了一些使用VLC代替wondershare的示例 但我无法在我的案例中部署它。

感谢您的帮助。

B.R

2 个答案:

答案 0 :(得分:1)

请阅读此Stack Overflow帖子,其中包含有关从其他应用启动活动的详细说明:

Open another application from your own (intent)

答案 1 :(得分:0)

    Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.tudelft.triblerdroid.first");
//put your extras here into Intent
    startActivity(LaunchIntent);