滚动型内只滚动滚动型机器人的WebView

滚动型内只滚动滚动型机器人的WebView

本文介绍了滚动型内只滚动滚动型机器人的WebView的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的应用程序我有一个包含一些linearviews,一些textviews和一个web视图,那么其他的线性布局等问题是web视图不滚动滚动型。滚动仅监听滚动型。任何建议?


 <滚动型>
    <的TextView />
    < web视图/> <  - 这不滚动
    <的TextView />
< /滚动型>
 

解决方案

下面是解决方案。在网上找到。我有子类的WebView和我使用了 requestDisallowInterceptTouchEvent(真); 办法让我的web视图来处理滚动事件。

 包com.mypackage.common.custom.android.widgets

公共类TouchyWebView扩展的WebView {

    公共TouchyWebView(上下文的背景下){
        超(上下文);
    }

    公共TouchyWebView(上下文的背景下,ATTRS的AttributeSet){
        超(背景下,ATTRS);
    }

    公共TouchyWebView(上下文的背景下,ATTRS的AttributeSet,诠释defStyle){
        超(背景下,ATTRS,defStyle);
    }

    @覆盖
    公共布尔的onTouchEvent(MotionEvent事件){
        requestDisallowInterceptTouchEvent(真正的);
        返回super.onTouchEvent(事件);
    }
}
 

而在layout.xml

 < com.mypackage.common.custom.android.widgets.TouchyWebView
                机器人:ID =@ + ID / description_web
                机器人:layout_width =match_parent
                机器人:layout_height =WRAP_CONTENT
                 />
 

In my app I have a ScrollView that contains some linearviews, some textviews and One Webview, then other linear layouts etc. The problem is that the WebView does not scroll. The Scroll listens only on ScrollView.Any suggestions??


<ScrollView >
    <TextView />
    <WebView />              <-- this does not scroll
    <TextView />
</ScrollView >
解决方案

Here is the solution. Found online. I have subclassed WebView and i'm using the requestDisallowInterceptTouchEvent(true); method to allow my webview to handle the scroll event.

package com.mypackage.common.custom.android.widgets

public class TouchyWebView extends WebView {

    public TouchyWebView(Context context) {
        super(context);
    }

    public TouchyWebView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public TouchyWebView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    public boolean onTouchEvent(MotionEvent event){
        requestDisallowInterceptTouchEvent(true);
        return super.onTouchEvent(event);
    }
}

And in layout.xml

<com.mypackage.common.custom.android.widgets.TouchyWebView
                android:id="@+id/description_web"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                 />

这篇关于滚动型内只滚动滚动型机器人的WebView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 04:24