Pregunta

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?

¿Fue útil?

Solución

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);
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top