我有带有 NestedScrollView 的 Android 活动,在里面我有带有一些 html 和 jQuery 脚本的 Webview。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/main_scroller"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
... some other components ...
<WebView
android:id="@+id/web_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
</FrameLayout>
在这个 jQuery 脚本中,我正在 html 中的一个元素上监听事件“touchstart”、“touchmove”和“touchend”。当我在这个元素上水平移动手指时,会触发事件。但是,当我向上或向下移动手指 1px 时,会触发 Android 本机滚动,并且也会触发我的本机代码(侦听器 setOnTouchListener):
view.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
Log.d(TAG, "touched");
return false;
}
});
但是我在 webview 中的 jQuery 监听器没有被触发。看起来Android在NestedScrollView中滚动时不会将触摸事件传播到webview。
如果我将 NestedScrollView 更改为 FrameLayout(或其他不可滚动的内容),则一切正常(当我垂直移动手指时,会触发 jQuery touchmove 事件)。
我试图 在 Android onTouch 事件中返回 true,它停止滚动页面,但 webview 没有接收到触摸事件。ScrollView 的行为与 NestedScrollView 相同。
你有什么想法,如何将触摸事件传播到 webview 并仍然使用 ScrollView?谢谢你。