Hide system bar while video playing (I've read the FAQ) - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111) +---- Forum: Android (https://forum.kodi.tv/forumdisplay.php?fid=164) +---- Thread: Hide system bar while video playing (I've read the FAQ) (/showthread.php?tid=151114) |
Hide system bar while video playing (I've read the FAQ) - slybin - 2013-01-07 Hi all, I've read the faq about how the system bar works have changed in 4.0 and up. But I wonder why the built-in video player or "MX video player" can hide/dim it and not xbmc? Thanks, RE: Hide system bar while video playing (I've read the FAQ) - davilla - 2013-01-07 ask them. RE: Hide system bar while video playing (I've read the FAQ) - deadamerican - 2013-01-08 (2013-01-07, 15:09)slybin Wrote: Hi all, Hidebar Works as the name implies. RE: Hide system bar while video playing (I've read the FAQ) - davilla - 2013-01-08 * This application needs ROOT! Only install and use when you have root+busybox+superuser! * Busybox must be installed and at least once run, a reboot is needed after busybox has been run. too intrusive for me RE: Hide system bar while video playing (I've read the FAQ) - slybin - 2013-01-09 I've read about "Hidebar" but I don't want to root my tablet. I was just wondering with other apps can hide/dim the bar and not xbmc. RE: Hide system bar while video playing (I've read the FAQ) - davilla - 2013-01-09 (2013-01-09, 16:35)slybin Wrote: I've read about "Hidebar" but I don't want to root my tablet. I was just wondering with other apps can hide/dim the bar and not xbmc. So am I RE: Hide system bar while video playing (I've read the FAQ) - slhpss - 2013-01-13 FYI this is also the case for netflix and hulu+... I'm no developer but this may help those who are http://developer.android.com/reference/android/view/View.html#SYSTEM_UI_FLAG_HIDE_NAVIGATION it states that user interaction will cause the buttons to reappear (which is the case in netflix and hulu) but I'm sure it could be programmed in such a way that after a wait period they are set to hide again or when a button is pressed (full screen button maybe?). RE: Hide system bar while video playing (I've read the FAQ) - CosyCat - 2013-01-14 bsplayer autohide systembars https://play.google.com/store/apps/details?id=com.bsplayer.bspandroid.full&feature=search_result#?t=W251bGwsMSwxLDEsImNvbS5ic3BsYXllci5ic3BhbmRyb2lkLmZ1bGwiXQ.. RE: Hide system bar while video playing (I've read the FAQ) - davilla - 2013-01-14 (2013-01-14, 19:58)CosyCat Wrote: bsplayer autohide systembars and that helps xbmc how ? RE: Hide system bar while video playing (I've read the FAQ) - digitalhigh - 2013-01-15 Is it perhaps due to the system reporting that XBMC is running in "windowed mode"? I tried switching the value, and while it does scale the window up and down, the value itself never changes. Not sure what it's reporting back to the android filesystem. Rooting your device isn't that hard. I managed it on a UG007 a few minutes ago with nothing but ADB and some files gleaned from super1click. All you have to do is have the right ADB drivers for your device, then follow the instructions here to root. Shouldn't take more than fifteen minutes, and the risk level is incredibly minimal. http://www.pocketables.com/2011/06/how-to-manually-root-almost-any-android-device.html I'd just go with a root and hidebar for now. These guys have done an amazing job thus far, and I'm sure the other minimal things will work themselves out shortly... RE: Hide system bar while video playing (I've read the FAQ) - davilla - 2013-01-16 (2013-01-15, 22:16)digitalhigh Wrote: Is it perhaps due to the system reporting that XBMC is running in "windowed mode"? I tried switching the value, and while it does scale the window up and down, the value itself never changes. Not sure what it's reporting back to the android filesystem. Nope, guess again. Or you could check the source code and see that "windowed mode" is an artificial construct that means nothing to android. RE: Hide system bar while video playing (I've read the FAQ) - slhpss - 2013-01-18 davilla any luck looking at the system ui flags I posted links to? SYSTEM_UI_FLAG_HIDE_NAVIGATION and SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN seems they would have to be used together http://developer.android.com/reference/android/view/View.html#setSystemUiVisibility(int) explains it fairly well. seems you would also use window.FEATURE_ACTION_BAR_OVERLAY so that the application stretches underneath the nav bar even when it's shown for more seamless transitions. "This second code sample shows a typical implementation of a View in a video playing application. In this situation, while the video is playing the application would like to go into a complete full-screen mode, to use as much of the display as possible for the video. When in this state the user can not interact with the application; the system intercepts touching on the screen to pop the UI out of full screen mode. See fitSystemWindows(Rect) for a sample layout that goes with this code." Code: public static class Content extends ImageView implements RE: Hide system bar while video playing (I've read the FAQ) - Ned Scott - 2013-01-18 http://forum.xbmc.org/showthread.php?tid=152232 RE: Hide system bar while video playing (I've read the FAQ) - slhpss - 2013-01-18 I'll take that as a hint to post this there |