我添加了Toolbar
,Tablayout
并Viewpager
在我的 android 应用程序中。里面有三个Tabs
,TabLayout
每个都显示一个WebView
。当用户向下/向上滚动时,我将WebView
. 隐藏在Android 3.0或更高版本中。但不幸的是,在Android 2.3或更低版本中,一开始不会滚动。我必须滑动到另一个选项卡,当我回到 First时再次开始滚动。NestedScrollView
Toolbar
WebView
Toolbar
WebView
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>