android webview probleme loading video -
i creating android app. webview webpage including videos. not able start these videos main:
public class mainactivity extends actionbaractivity { @suppresslint({ "setjavascriptenabled", "newapi" }) @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); string url = "http://www.___.com/"; webview view = (webview) this.findviewbyid(r.id.webview1); view.getsettings().setjavascriptenabled(true); view.getsettings().setbuiltinzoomcontrols(true); view.getsettings().setsupportzoom(true); view.getsettings().setdisplayzoomcontrols(false); view.setwebviewclient(new webviewclient() { public boolean shouldoverrideurlloading(webview view, string url) { system.out.println("hello"); return false; } }); view.loadurl(url); } when start video remains loading never shows content.
Comments
Post a Comment