Reputation: 673
I was wondering if it would be possible to force the new immersive full screen feature in Android 4.4 from a background service, which would result in the system being full screen 'at all times'.
The idea was something like 'get the current active View and modify its UI visibility flags accordingly and also listen to system UI visibility changes'.
I'm not experienced in programming for Android so I was wondering if something like this is possible or you cannot modify the system's UI this way?
Upvotes: 0
Views: 753
Reputation: 1007474
This is not possible, as "the current active View" is not necessarily in your process.
Upvotes: 1