5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WebViewのvideoで表示されるあの画像(▶)を消す方法

Posted at

WebViewの動画再生で見たことあるであろう「あの画像」を消す方法のメモ。

ちなみにこちらのことです↓
▶.png

WebChromeClientgetDefaultVideoPoster を指定すればOKだった

WebChromeClientgetDefaultVideoPoster で適当なBitmapを返すことで、実質消すことができるようでした。

override fun getDefaultVideoPoster(): Bitmap? {
    return Bitmap.createBitmap(1, 1, Bitmap.Config.ARGB_8888)
}

Before/After

▶の画像が消え、チラつかなくなりました。

Before After
1586051504.gif 1586051528.gif

参考

https://developer.android.com/reference/android/webkit/WebChromeClient.html?hl=ru#getDefaultVideoPoster()
https://stackoverflow.com/questions/18271991/html5-video-remove-overlay-play-icon

5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?