1

我正在使用支持库开发一个带有工具栏的 android 应用程序。我已经设定

<item name="windowActionModeOverlay">true</item>

在我的应用程序风格中,现在我的动作模式以纵向模式正确覆盖在工具栏上。

但是,当我切换到横向模式时,我的操作模式下方仍然可以看到一小块工具栏。

你可以看到我在这里谈论的图像

我的工具栏代码粘贴在下面。我把它包括在我所有的活动中。我尝试将海拔设置为 0dp,但问题仍然存在。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/primary"
android:theme="@style/ThemeOverlay.AppCompat.Dark"
app:popupTheme="@style/AppTheme.Menu"
android:elevation="4dp">
</android.support.v7.widget.Toolbar>

AppTheme.Menu 如下所示:

<style name="AppTheme.Menu" parent="ThemeOverlay.AppCompat.Light">
    <item name="android:colorBackground">@android:color/white</item>
    <item name="android:textColor">@color/primary_dark</item>
</style>
4

0 回答 0