Skip to content

Instantly share code, notes, and snippets.

@shihabmi7
Last active December 27, 2017 08:53
Show Gist options
  • Select an option

  • Save shihabmi7/37edaa45950ee47761715e207cd3bf60 to your computer and use it in GitHub Desktop.

Select an option

Save shihabmi7/37edaa45950ee47761715e207cd3bf60 to your computer and use it in GitHub Desktop.
Prevent application content from screenshot or screen recording
if(android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.HONEYCOMB) {
getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment