繁体   English   中英

android - CoordinatorLayout / NestedScrollView /隐藏 - 显示工具栏/ WebView问题

[英]android - CoordinatorLayout/NestedScrollView/Hide-Show Toolbar/Issue with WebView

我有一个问题:

<?xml version="1.0" encoding="utf-8"?> <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.support.design.widget.AppBarLayout
        android:id="@+id/appBarLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways" />
    </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_width="match_parent"
            android:layout_height="match_parent" />
    </android.support.v4.widget.NestedScrollView>

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

当我在webview中滚动时,工具栏被隐藏或显示(完美!)但是加载/定位网页时出现问题。 例如,如果我滚动到页面的中间并单击链接,则将加载的新页面也位于页面的大约中间而不是顶部。 好像滚动条没有从一个页面移动到另一个页面。

如果我添加到NestedScrollView:

android:fillViewport="true"

一切都适用于webview(页面加载并显示良好,虽然从顶部开始)但我丢失隐藏/显示与工具栏:(

你对这个问题有什么看法吗?

预先感谢您的帮助 :)

(有关信息:Android设计支持库:23.0.1)

我的假设:由于您将WebView放在NestedScrollView ,因此在WebView级别上不会进行滚动,因此当您加载新页面时, NestedScrollView保持在相同的位置。

建议:创建WebViewClient并覆盖onPageStarted ,您应该将NestedScrollView滚动位置更改为0:

nestedScrollView.scrollTo(0, 0);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM