gpt4 book ai didi

Android:在浏览器中双击

转载 作者:行者123 更新时间:2023-11-30 03:22:16 25 4
gpt4 key购买 nike

如何在 WebBrowser 中捕获双击?我试图在其他网站上找到答案,但一无所获。

我想通过双击设置缩放。

我该怎么做?

谢谢!

最佳答案

试试这个

final GestureDetector gestureDetector = new GestureDetector(new GestureDetector.SimpleOnGestureListener() {

@Override
public boolean onDoubleTap(MotionEvent e) {

// your custom way to zoom
return true;
}


});


yourWebView.setOnTouchListener(new OnTouchListener(){

@Override
public boolean onTouch(View v, MotionEvent event) {
return gestureDetector.onTouchEvent(event);
}

});

关于Android:在浏览器中双击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18929849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com