0

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

我在https://github.com/rauljim/tgs-android/blob/integrate_record/src/com/tudelft/triblerdroid/first/VideoPlayerActivity.java#L211找到了一些使用 VLC 而不是 Wondershare 的示例, 但我无法部署它就我而言。

我感谢您的帮助。

BR

4

2 回答 2

1

请阅读这篇 Stack Overflow 帖子,其中详细说明了从其他应用程序启动活动:

从您自己的(意图)打开另一个应用程序

于 2013-04-19T08:20:22.177 回答
0
    Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.tudelft.triblerdroid.first");
//put your extras here into Intent
    startActivity(LaunchIntent);
于 2013-04-19T08:19:25.003 回答