NestedScrollView内的webview导致高度问题

时间:2015-09-10 21:27:34

标签: android webview android-coordinatorlayout coordinator-layout nestedscrollview

我使用support.v4.widget.NestedScrollView,我的webview存在问题。

这是我的布局:

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/coordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusableInTouchMode="true">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:id="@+id/barlayout">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:background="#9E9E9E"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_scrollFlags="scroll|enterAlways">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/relativeLayout"
            android:animateLayoutChanges="true">

            <!-- some views here -->

        </RelativeLayout>

    </android.support.v7.widget.Toolbar>

</android.support.design.widget.AppBarLayout>

<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <WebView
        android:id="@+id/webView"
        android:layout_height="match_parent"
        android:layout_width="match_parent" />

</android.support.v4.widget.NestedScrollView>

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

    <ProgressBar
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/progressBar"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true"/>

    <include
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        layout="@layout/dialog_location"
        android:id="@+id/dialog"
        android:visibility="invisible"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true" />

</RelativeLayout>

通过这种布局,webview必须滚动很多(抱歉链接,我无法发布图片)

https://drive.google.com/open?id=0B7otV-_1sdEvUWRzSjlHY01fY3c

如果我将webview更改为wrap_content,则webview很小

<WebView
        android:id="@+id/webView"
        android:layout_height="wrap_content"
        android:layout_width="match_parent" />

https://drive.google.com/open?id=0B7otV-_1sdEvbVFSRlR0a2IxeUk

1 个答案:

答案 0 :(得分:2)

我们正在做同样的事情。这已经被谷歌的开发人员和设计师所分类。目前提供的解决方案不是在NestedScrollView中使用Android Webview。

以下摘自帖子here

  

这是WAI。

     

如果将webview放在NestedScrollView中,则height为wrap_contents,和   webview扩展到页面大小。这好像在桌面上,   您将浏览器窗口的大小调整为页面的高度,以便它无法滚动   垂直。滚动发生在NestedScrollView而不是   webview本身。

     

因此,页面中没有js的结果会看到任何滚动事件,所以它   不知道你滚动到页面末尾加载更多内容。

     

此外,硬件图层由GL纹理支持,并且它们具有最大值   尺寸(屏幕尺寸最小,但通常不多   大)。如果视图变得大于最大纹理大小,那么   它不适用于硬件层。这适用于任何视图,而不是   只是webview。

     

解决方案:不要将webview放在NestedScrollView中。不要使用webview   在wrap_contents模式下。让webview滚动网页本身。