我尝试编写一个小应用程序来播放视频流。
我在https://gist.github.com/macdonst/1507162找到了PhoneGap
插件。
我试过了,但它对我没用。
有没有人有一个示例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?