I have a fullscreen drawing app that disables the title and status bars using the Android Theme.NoTitleBar.Fullscreen theme. One of the requests I am getting would be the ability to have these UI elements set to auto-hide, such that is the user touches near where they would be, they are shown. I can imagine ways to accomplish this using a custom Activity that emulates the title bar, but replacing the notification bar just isn't feasible.
So, just wondering if there is any way to auto-hide the OS standard title and status bars. I would imagine this is NO, as these elements look to be tied to the Activity in onCreate (or inflated from XML in onCreate), so once active, it wouldn't be possible to change their behavior.
I think the solution to your problem is right in the dummy Fullscreen project Android Studio has. Check it out:
Using android 3.1, one can set the visibility of the UI Status bar using
on touching where the status bar would be, the bar appears.
You can listen for this via the
method and then hide the bar again after some time
None that I have seen.
Moreover, what your user is requesting can't be done generically -- what if there is a Button up "near where they would be"?