Prevent Video screen capture in VideoView Activity - Android

298 Views Asked by At

I want to Prevent Video screen capture (screen graving) in my PlayerActivity, I use VideoView.

I already tried this

 getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE);

But it works only on some activity.

1

There are 1 best solutions below

0
On BEST ANSWER

If you're using VideoView with SurfaceView, you can use SurfaceView.setSecure(true) it will prevent screen capture.

hope this will help you.