Disable screenshots in android ics

前端 未结 2 380
隐瞒了意图╮
隐瞒了意图╮ 2020-12-28 23:45

For one of our secure apps, there is a requirement to disable the screenshot capability for the app in Android ICS. Is this possible on a non-rooted device?
Thanks,

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-29 00:14

    Why don't you add this line in your activity class. This will do the trick.

    // This disables screen shot to be taken for current activity
    getWindow().setFlags(LayoutParams.FLAG_SECURE, LayoutParams.FLAG_SECURE);
    

    You may want to have a look at Mark Murphy's blog post.

提交回复
热议问题