Skip to content Skip to sidebar Skip to footer

Kiosk Mode Or Fullscreen In Chromium On Android

I have built a chromium ContentShell for my android device as explained here: https://code.google.com/p/chromium/wiki/AndroidBuildInstructions I now want to use this ContentShell i

Solution 1:

To get rid of the system UI bars I did this:

service call activity 42 s16 com.android.systemui

As explained here: https://stackoverflow.com/a/19373504/3640770

Then I edited shell_view.xml and added this to the LinearLayout responsible for the toolbar:

android:visibility="gone"

As explained here: https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/6sSGXfPOhqg

Post a Comment for "Kiosk Mode Or Fullscreen In Chromium On Android"