我想从我当前的活动中启动wondershare播放器,并使其( wondershare播放器)使用一些传递的参数(通过调用)作为流url。
我在https://github.com/rauljim/tgs-android/blob/integrate_record/src/com/tudelft/triblerdroid/first/VideoPlayerActivity.java#L211上找到了一些使用VLC而不是wondershare的例子,但我不能在我的例子中部署它。
我很感谢你的帮助。
B.R
发布于 2013-04-19 16:20:22
请阅读这篇Stack Overflow帖子,详细解释如何从其他应用程序启动活动:
发布于 2013-04-19 16:19:25
Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.tudelft.triblerdroid.first");
//put your extras here into Intent
startActivity(LaunchIntent);https://stackoverflow.com/questions/16100225
复制相似问题