解决video标签在安卓webview下无法自动播放问题
程序员文章站
2023-08-29 20:21:37
在安卓webview下 html5 的 video 设置autoplay 属性 或在document ready中使用play方法 都不能使它自动播放 只能用webview...
在安卓webview下
html5 的 video 设置autoplay 属性
或在document ready中使用play方法
都不能使它自动播放
只能用webview的onpagefinished方法来解决此问题,代码如下:
mplayer.setwebviewclient(new webviewclient() {
// autoplay when finished loading via javascript injection
public void onpagefinished(webview view, string url) { mplayer.loadurl("javascript:(function() { var videos = document.getelementsbytagname('video'); for(var i=0;i<videos.length;i++){videos[i].play();}})()"); }
});
将上面的代码放到//here的地方即能解决问题。
public class playeractivity extends activity {
protected void oncreate(bundle savedinstancestate) {
//here
}
}
html5 的 video 设置autoplay 属性
或在document ready中使用play方法
都不能使它自动播放
只能用webview的onpagefinished方法来解决此问题,代码如下:
复制代码 代码如下:
mplayer.setwebviewclient(new webviewclient() {
// autoplay when finished loading via javascript injection
public void onpagefinished(webview view, string url) { mplayer.loadurl("javascript:(function() { var videos = document.getelementsbytagname('video'); for(var i=0;i<videos.length;i++){videos[i].play();}})()"); }
});
将上面的代码放到//here的地方即能解决问题。
复制代码 代码如下:
public class playeractivity extends activity {
protected void oncreate(bundle savedinstancestate) {
//here
}
}
上一篇: android开启免提切换功能示例
下一篇: javascript正则表达式简介