Thomas Boehnlein
unread,Mar 24, 2013, 1:32:49 PM3/24/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to quill...@googlegroups.com
tsorn replied to me with this:
As you know there is no "offical" or "api"-way to hide systembar since ICS
anymore. Thats why full!screen needs to do it the hard way: by completely
stopping the process which controls systembar (com.android.systemui).
Unfortunately this brings plenty of problems since all functionality (wallpaper,
notifications, recent apps and many more) of SystemUI gets disabled. Therefore
full!screen includes custom recent apps- and notifications-panel. I developed
full!screen because similar available apps didn't handle those problems so far.
I am not sure if this helps with your app, due to the problems this way of
hiding systembar brings, but here it is what full!screen does:
To disable systemUI-process a rootshell is required:
"service call activity 42 s16 com.android.systemui"
this will stop systemUI-process.
To reenable or restart systemUI
"am startservice -n com.android.systemui/.SystemUIService"
needs to be called, also within rootshell.
-----------------------------------------------------
So my initial thought was to add a button that would kill it and restart it when pressed again from within Quill. The settings to enable the button would explain it kills all of those services until you turn it back on.