我在我的Android应用中添加了Toolbar
,Tablayout
和Viewpager
。 Tabs
中有三个TabLayout
,每个WebView
都显示WebView
。
当用户在NestedScrollView
中向下/向上滚动时,我将Toolbar
放在WebView
中隐藏/显示Toolbar
。 WebView
隐藏在 Android 3.0 或更多内容中。
但不幸的是, Android 2.3 或更少Tab
不会首先滚动。我必须滑动到另一个标签页,当我再次回到WebView
时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>
或更少的情况下滚动,没有任何问题。
我的WebView
+=
答案 0 :(得分:3)
尝试使用此库:https://github.com/ksoichiro/Android-ObservableScrollView此库适用于API 9+。但请记住,2.3在视觉效果,动画等方面存在很多问题
您还可以下载并查看以下代码示例:&#34; ActionBarControlWebViewActivity WebView&amp;行动吧&#34;它正是你要找的。链接:ActionBar & WebView
就像使用它一样简单:
ObservableWebView webView = (ObservableWebView) findViewById(R.id.web);
webView.setScrollViewCallbacks(this);
webView.loadUrl("file:///android_asset/lipsum.html");