我尝试编写一个小应用程序来播放视频流。我在https://gist.github.com/macdonst/1507162PhoneGap
找到了一个插件。我试过了,但它对我不起作用。
有没有人有一个示例 Eclipse 项目要发送给我?
非常感谢 !
对不起我的英语不好,我是法国人!
或者我的问题的另一种方式可能是如何从我的 html 页面调用活动?我已经测试过了:
public class App extends DroidGap {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.loadUrl("file:///android_asset/www/index.html");
/* Call MX PLayer */
String videoUrl = "http://myserveur.com:1400";
Intent i = new Intent(android.content.Intent.ACTION_VIEW);
i.setDataAndType(Uri.parse(videoUrl), "video/*");
startActivity(i);
}
它工作正常!当然,当我启动应用程序时,它会启动具有良好视频链接的 MXPlayer。那么如何从 html 页面调用 MxPlayer 呢?