自助服务机模式或全屏(铬在Android上)
作者:互联网
我已经为我的android设备构建了Chrome ContentShell,如下所示:
https://code.google.com/p/chromium/wiki/AndroidBuildInstructions
我现在想在全屏模式下使用此ContentShell.我尝试按照以下说明添加旗帜亭:
http://www.chromium.org/developers/how-tos/run-chromium-with-flags
但这是行不通的.有没有一种方法可以在带有铬的android上使用信息亭模式,或者您会推荐另一种方法来实现我想要的功能? (全屏显示网站,没有任何地址栏/菜单,也没有系统用户界面栏)
解决方法:
为了摆脱系统用户界面栏,我这样做:
service call activity 42 s16 com.android.systemui
如此处所述:https://stackoverflow.com/a/19373504/3640770
然后,我编辑了shell_view.xml并将其添加到负责工具栏的LinearLayout中:
android:visibility="gone"
如此处所述:https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/6sSGXfPOhqg
标签:kiosk-mode,fullscreen,chromium,android 来源: https://codeday.me/bug/20191029/1959711.html