我的导航视图在我的应用的某个屏幕中忽略了它的视图中的android:theme参数。特定屏幕是搜索窗口,其中包括工具栏内的编辑文本视图。此问题仅适用于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>
有没有人有任何想法为什么会发生这种行为?另外,我的导航视图有时会非常滞后,没有理由。打开或关闭此抽屉时,我不做任何计算。
答案 0 :(得分:0)
我发现了我的问题。我正在使用super.onCreate(savedInstanceState);在我使用方法设置内容视图和工具栏之后。似乎Android 5.0+没有问题,但旧设备没有问题。