I have VideoViewin my application.
I set the blur flags in my activity
getWindow().setFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND,
WindowManager.LayoutParams.FLAG_BLUR_BEHIND);
The problem is that even the video is VideoViewblurred, which I donβt want.
When VideoViewreplaced with ImageViewwith the specified source, it does not blur at all.
Is there any solution to avoid this blurring in VideoView?
source
share