无法使用NestedScrollView为WebView创建图层

时间:2019-06-10 14:50:48

标签: android webview android-webview android-nestedscrollview

我正在将NestedscrollView添加到Webview中,以便在用户滚动时可以隐藏/显示工具栏。在我添加NestedScrollView可以进行隐藏/显示移动之前,该活动工作正常。此刻,我遇到一个错误,不确定如何解决。

java.lang.IllegalStateException: Unable to create layer for WebView, size 720x12996 exceeds max size 8192

这是我的xml

 <androidx.coordinatorlayout.widget.CoordinatorLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        xmlns:app="http://schemas.android.com/apk/res-auto">
        <LinearLayout
            android:id="@+id/ly_webview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:background="@android:color/background_light">

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="25dp"
                android:background="@color/negro">
            </RelativeLayout>

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

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical">

                <androidx.core.widget.NestedScrollView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_gravity="fill_vertical"
                    app:layout_behavior="@string/appbar_scrolling_view_behavior">
                    <WebView
                        android:id="@+id/webview_browser"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent" />
                </androidx.core.widget.NestedScrollView>

                <androidx.recyclerview.widget.RecyclerView
                    android:id="@+id/rv_web_items"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="vertical"
                    android:visibility="gone"
                    android:layout_marginTop="@dimen/margin_standard"/>

            </RelativeLayout>
        </LinearLayout>
    </androidx.coordinatorlayout.widget.CoordinatorLayout>

Generic_toolbar_browser

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.appbar.AppBarLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/home_appbarLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar_browser"
        android:layout_width="match_parent"
        android:layout_height="?android:attr/actionBarSize"
        app:layout_collapseMode="pin"
        app:titleTextColor="@color/white"
        app:theme="@style/ThemeOverlay.AppCompat.ActionBar"
        app:layout_scrollFlags="scroll|enterAlways"
        android:background="@color/blanco">

        .....

    </androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>

1 个答案:

答案 0 :(得分:0)

WebView可以自行滚动。不必将其放在NestedScrollView中。这样做可能会减小WebView的大小。不必担心app:layout_behavior="@string/appbar_scrolling_view_behavior",它也应该可以在WebView上使用(尽管有些情况很难设置)。例如

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <WebView
            android:id="@+id/webview_browser"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior" />

        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/rv_web_items"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:visibility="gone"
            android:layout_marginTop="@dimen/margin_standard"/>

    </RelativeLayout>

如果这不起作用,请查看WebView的父母。其中之一可能太大(=它的高度)。因此,请尽量不要超出屏幕的高度