android - HTML5 video remove overlay play icon -
how remove overlay play icon (triangle) that's visible in center of video second or every time video starts playing in android webview?
thanks in advance!
this picture had when tested app on android 6.0.
you can hide picture. example:
webview mwebview = (webview) findviewbyid(r.id.web_view); mwebview.setwebchromeclient(new webchromeclientcustomposter()); chrome client class:
private class webchromeclientcustomposter extends webchromeclient { @override public bitmap getdefaultvideoposter() { return bitmap.createbitmap(10, 10, bitmap.config.argb_8888); } } more info read api

Comments
Post a Comment