Android 4.x - NavigationView 忽略 android:theme 参数

Android 4.x - NavigationView ignores android:theme parameter

我的导航视图在我的应用程序的特定屏幕中部分忽略了它的视图的 android:theme 参数。特定屏幕是搜索 window,其中包括工具栏内的编辑文本视图。此问题仅存在于 4.x 设备。导航视图似乎只忽略参数 android:textSize.

Link to the two images.包含较小字体的图像是描述的导航视图,部分忽略了android:theme参数。

这是我在全球范围内使用的导航视图:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.NavigationView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/nav_background"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.Drawer"
app:itemBackground="@drawable/nav_item_selector_background"
app:itemTextColor="@color/nav_default_text_color"
app:menu="@menu/navigation_drawer" />

这是连接到 android:theme 的样式:

<style name="AppTheme.Drawer">
    <item name="android:textSize">25sp</item> <!-- menu item text size-->
    <item name="android:listPreferredItemHeightSmall">70dp</item><!-- menu item height-->
</style>

有人知道为什么会发生这种行为吗?此外,我的导航视图有时会无缘无故地滞后。打开或关闭这个抽屉时我不做任何计算。

我发现了我的问题。我正在使用 super.onCreate(savedInstanceState);在我使用这些方法设置内容视图和工具栏之后。 Android 5.0+ 似乎没有问题,但旧设备有问题。