长按Android

前端之家收集整理的这篇文章主要介绍了长按Android前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有自定义视图中检测长按的问题.

这是与此问题相关的代码

final GestureDetector gestureDetector = new GestureDetector(new GestureDetector.SimpleOnGestureListener() {
    public void onLongPress(MotionEvent e) {
        Log.e("dbg_msg","onLongPress");
    }
});

public boolean onTouchEvent(MotionEvent event) {
    return gestureDetector.onTouchEvent(event);
};

代码可以长时间检测每一个(短)点击.

当我将此代码放在继承自Activity的类中时,它可以工作.

那么为什么它不能在自定义视图中工作?

解决方法

所有这些代码都在你的自定义视图类中:
public static int LONG_PRESS_TIME = 500; // Time in miliseconds 

final Handler _handler = new Handler(); 
Runnable _longPressed = new Runnable() { 
    public void run() {
        Log.i("info","LongPress");
    }   
};

@Override
public boolean onTouchEvent(MotionEvent event) {
    switch(event.getAction()){
    case MotionEvent.ACTION_DOWN:
        _handler.postDelayed(_longPressed,LONG_PRESS_TIME);
        break;
    case MotionEvent.ACTION_MOVE:
        _handler.removeCallbacks(_longPressed);
        break;
    case MotionEvent.ACTION_UP:
        _handler.removeCallbacks(_longPressed);
        break;
    }
    return true;
}
原文链接:https://www.f2er.com/android/310782.html

猜你在找的Android相关文章