I have a request that when the my Android application is placed into the background that I blank out the screen to hide sensitive data. This was easy enough to implement using the:
getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE);
The difficult part appears to be changing the color of that blank screen you get when looking at the apps in the background. By default it appears to be white and I can't seem to find a way to override that. Anyone have any ideas?