gpt4 book ai didi

Android - WebViewFragment 和 NavigationBar

转载 作者:太空狗 更新时间:2023-10-29 14:46:07 28 4
gpt4 key购买 nike

我正在制作一个应用程序并在 Activity 中使用 fragment ,我正在使用替换功能切换这些 fragment 。这里的问题出在 WebViewFragment 上,当用其他 WebViewFragment 替换现有的 WebViewFragment 时,有时系统导航栏会变成白色...

应用程序屏幕,从左到右:正常、错误、错误:

App screens, from left to right: Normal, error, error

这是我的布局

Activity

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical">

<include layout="@layout/toolbar"/>

<android.support.v4.widget.DrawerLayout
android:id="@+id/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<FrameLayout
android:id="@+id/contentPanel"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

<android.support.design.widget.NavigationView
android:id="@+id/navigationView"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:layout_gravity="start"
android:background="?colorAccent"
app:itemTextColor="@drawable/navigation_items_color_selector"
app:menu="@menu/menu_navigation"
style="@style/NavigationDrawerStyle"/>

</android.support.v4.widget.DrawerLayout>
</LinearLayout>

我正在使用 androids WebViewFragment,所以没有我定义的布局,我尝试使用以 Webview 作为根布局的自定义布局,但遇到了同样的问题

层级查看器没有显示任何异常

左边正常,右边错误:

Left OK, Right Error

在设备上,导航栏显示为白色,而在层次结构查看器上显示正确,letf 图像没有问题,右侧有问题,没有其他 View 。

我正在使用 gradle 版本 2.14.1 和以下支持库:

  • com.android.support:design:24.2.1
  • com.android.support:appcompat-v7:24.2.1
  • com.android.support:recyclerview-v7:24.2.1
  • com.android.support:cardview-v7:24.2.1
  • com.android.support:percent:24.2.1

编辑:忘了说了,这发生在 Android 7.0 和 Android 6.0 上

最佳答案

这是由于 webview 使用 layerType 作为 LAYER_TYPE_HARDWARE,将其切换为 LAYER_TYPE_SOFTWARE 解决了问题

关于Android - WebViewFragment 和 NavigationBar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40091548/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com