Hide screen in 'Recent Apps List', but allow screenshots

谁都会走 提交于 2019-11-29 03:02:49

问题


I mainly want to blank the screen in the recent apps list due to sensitive data being shown. For this, the solution is to use:

getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);

but this also disallows screenshots, which is a problem.

Is there a way to show a blank screen (or a predefined image) in the recent apps list, while still allowing screenshots?


回答1:


I think what you need is:

android:excludeFromRecents="true"

put that in your android manifest inside your <activity>(activity you want to exclude from recents)</activity>




回答2:


I have tried this method and it's working. For making the screen blank in recent list and still allowing screen you can set the flag in onPause() and clear the flag in onResume().

@Override
protected void onPause() {
  super.onPause();
  getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE,WindowManager.LayoutParams.FLAG_SECURE);
}

@Override
protected void onResume() {
    super.onResume()
    getWindow().clearFlags(WindowManager.LayoutParams.FLAG_SECURE);     
}



回答3:


If your Activity is showing sensitive data, for the security reason is better to don't allow user to make screenshots. If you are worry even about recent app screen, why you are not worry about screenshots on the same time? I think, that Android OS SecureFlag is designed to protect your data, and screenshots ability, just negates it's purpose.
If you anyway, want this ability, you can try to move all your sensitive data to separate activity with this flag. In that case, you will protect your sensitive data, and in other app's activities will have ability to make screenshots.




回答4:


After doing some research I have found this to be impossible at this point.

The onCreateThumbnail seems to be the function you're looking for. Unfortunately this function seems to be unimplemented or at least not working.

As Ped7g pointed out: The onCreateThumbnail is "won't fix" since 2014.

It's also flagged deprecated for removal in the Android onCreateThumbnail reference page

This functionality will most likely never work.



来源:https://stackoverflow.com/questions/29642642/hide-screen-in-recent-apps-list-but-allow-screenshots

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!