webview怎么禁止双击缩放

 我来答
黑马程序员
2016-09-19 · 改变中国IT教育,我们正在行动
黑马程序员
黑马程序员为大学毕业后,有理想、有梦想,想从事IT行业的年轻人改变自己的命运。黑马程序员成就IT黑马
向TA提问
展开全部
[java] 
public class MyWebView extends WebView {  
  
    private long last_time = 0L;  
  
    public MyWebView(Context context) {  
        super(context);  
    }  
  
    public MyWebView(Context context, AttributeSet attrs) {  
        super(context, attrs);  
    }  
    @Override  
    public boolean onTouchEvent(MotionEvent event) {  
        switch (event.getAction()) {  
            case MotionEvent.ACTION_DOWN:  
                long current_time = System.currentTimeMillis();  
                long d_time = current_time - last_time;  
//                System.out.println(d_time);  
                if (d_time < 300) {  
                    last_time = current_time;  
                    return true;  
                } else {  
                    last_time = current_time;  
                }  
                break;  
        }  
        return super.onTouchEvent(event);  
    }  
}
jiusi云
2016-08-29
知道答主
回答量:8
采纳率:0%
帮助的人:2.5万
展开全部
这个做不到。WebView非常特殊, 虽然派生自UIElement,但是很多UIElement中的属性方法对它无效。 我的建议是,如果你只想显示信息可以使用WebViewBrush
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式