Samiu Salihu
Samiu Salihu

Reputation: 11

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.

Upvotes: 1

Views: 341

Answers (1)

Dipankar Baghel
Dipankar Baghel

Reputation: 2039

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

hope this will help you.

Upvotes: 0

Related Questions