0

我无法使用 NestedScrollView 显示 webview 底部内容的情况。底部栏不是应用程序栏。

我很抱歉我的英语。谢谢~

依赖关系

compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:recyclerview-v7:23.3.0'
compile 'com.android.support:design:23.3.0'

在此处输入图像描述 在此处输入图像描述

我的代码

<android.support.design.widget.CoordinatorLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent">

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

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

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

            <WebView
                android:id="@+id/web_view"
                android:layout_width="match_parent"
                android:layout_height="match_parent"></WebView>
        </android.support.v4.widget.NestedScrollView>
    </android.support.v4.widget.SwipeRefreshLayout>

</android.support.design.widget.CoordinatorLayout>
4

1 回答 1

0

您应该更多地阅读有关 Material 小部件的信息,因为您在 NewstedScrollView 中使用了一些新参数。该参数为下方的滚动空间,来自 ActionBar 的大小。只需删除它,或更新您的代码!

app:layout_behavior="@string/appbar_scrolling_view_behavior"
于 2016-04-22T09:49:29.287 回答