适用于Android的Chromium:如何始终保持全屏模式

时间:2018-04-27 11:55:35

标签: android chromium

我正在创建一个全屏应用,但Chromium的UI有一个网址栏,我不知道如何每次隐藏它。 我发现此功能进入全屏模式,但无法保留,如果导航到新网址将退出

getFullscreenManager().setPersistentFullscreenMode(true);

还有另一个问题:如何关闭红色边框?喜欢这张图片:enter image description here。但只会遇到Chromium的问题。

我在这里使用的项目:https://github.com/kuoruan/Chromium-Android

1 个答案:

答案 0 :(得分:0)

更新您在清单文件中提到的项目主题

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

注意: windowNoTitle为true,windowActionBar为false