immersive mode

  1. Claude Obiri Amadu

    B4A Library Immersive Mode - Hide system bars

    Based on: https://www.b4x.com/android/forum/threads/immersive-mode-hide-the-navigation-bar.90882/#content Sub Globals Dim immersive As ImmersiveMode End Sub Sub Activity_Create(FirstTime As Boolean) immersive.Initialize(Activity) Activity.LoadLayout("Layout") End Sub Sub...
  2. M

    Android Question Permanently Hide Navigation and Status bars

    Hi everyone, I'm developing a Kiosk App. I set the app to go in Immersive Mode, however it is still possible for the user to show the android navigation and status bars… since it must be a kiosk app I do not want to have any android UI in it... is it possible to permanently hide the navigation...
  3. yo3ggx

    Android Question Smartphones with a notch

    Following the tutorial here I was able to display the application in full screen Iimmersive mode), including over the notch area. It is possible to set the option (cover/not cover notch area0 from the code, not from the Manifest file? Some smartphones can have a bigger notch and then to cover...
  4. TelKel81

    Android Question Status bar with immersive mode is hidden, but can't draw over its location

    Dim jo As JavaObject = Activity jo.RunMethod("setSystemUiVisibility", Array As Object(5894)) '--> status bar area becomes 100% black, non-visible jo = jo.RunMethod("getResources", Null) Dim ResourceID As Int = jo.RunMethod("getIdentifier", Array As Object("status_bar_height", "dimen"...
  5. I

    Android Question Immersive Mode Status Bar

    Hi There I am using the code posted in here to hide the status & navigation bars. When the user opens another activity the status bar get displayed for a second or so then disappears. Is there a way to prevent this behavior from happening? Note that the second activity also contains the same...
  6. LucaMs

    Other Immersive mode - Debug and Release

    At least on my smartphone (Huawei - Android 8), the source code published here to "set the immersive mode" is not always enough; rotating the device (changing the activity orientation), sometimes (33% of cases?) the navigation bar remain visible. The code worked perfectly in Debug mode, so I...
  7. Brandsum

    Android Tutorial Immersive Mode with Notch area support

    Original tutorial: Immersive Mode - hide the navigation bar (by @Erel ) So the above tutorial works for those devices which do not have a Notch. Devices with a notch will crop the bottom of the application content. Solution (Project attached): Add this code to GetRealSize sub of the original...
  8. LucaMs

    Android Question Immersive mode causes a crash in debug mode

    I "set" immersive mode for the Main; from here I start another Activity and Activity_WindowFocusChanged causes a crash if I start the app in debug mode (see the test project attached). Tested only on an Android 4.4.2.
Top