10

我添加了Toolbar,TablayoutViewpager在我的 android 应用程序中。里面有三个TabsTabLayout每个都显示一个WebView。当用户向下/向上滚动时,我将WebView. 隐藏在Android 3.0或更高版本中。但不幸的是,在Android 2.3或更低版本中,一开始不会滚动。我必须滑动到另一个选项卡,当我回到 First时再次开始滚动。NestedScrollViewToolbarWebViewToolbarWebViewTabWebView

我想要的是?

我希望WebView应该滚动Android 2.3或更少没有任何问题。

我的网络视图

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:isScrollContainer="false"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:paddingTop="1dp">

     <WebView
         android:id="@+id/webviewtool"
         android:layout_width="match_parent"
         android:layout_height="fill_parent"
         android:numColumns="1"
         android:scrollbars="none"
         android:focusableInTouchMode="false"
         android:focusable="false"
         android:background="#FFFFFF" />

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

1 回答 1

3

尝试使用这个库:https ://github.com/ksoichiro/Android-ObservableScrollView这个库适用于 API 9+。但请记住,2.3 在视觉效果、动画等方面存在很多问题

您还可以下载并查看以下代码示例:“ActionBarControlWebViewActivity WebView & Action Bar”正是您要找的。链接:ActionBar & WebView

就像这样使用它一样简单:

ObservableWebView webView = (ObservableWebView) findViewById(R.id.web);
webView.setScrollViewCallbacks(this);
webView.loadUrl("file:///android_asset/lipsum.html");
于 2015-09-07T15:21:36.787 回答