Search code examples
androidscreenshotscreen-grab

Prevent Video screen capture in VideoView Activity - Android


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.


Solution

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

    hope this will help you.