I need to hide my application screen from the list of running applications when you click the Recent Apps button in Android 4.x. The data that my application contains could leak sensitive information if someone were to have my application running in the background. I would still like my application to be shown in recent apps, just not the screenshot.

How do you do this?

有帮助吗?

解决方案

To exclude the application from recent apps you should do the following:

on Activity on Manifest android:excludeFromRecents="true" 

and you can disable thumbnail on the activity containing sensitive data by adding FLAG_SECURE to your window:

getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top