使用GestureDetector调用Longpress后调用滚动事件

时间:2017-04-25 15:09:58

标签: android scroll long-press gesturedetector

在没有发布屏幕的情况下调用Longpress后我应该如何调用滚动事件(使用gesturedetector)?

这是我的班级:

let message1 = "12345612345678901234567890";
let message2 = "12345612345678901234567999";
let message3 = "12345612345678901234999999";

function addNumberToString(str, numToAdd, digits = []) {

  const [N, len, max] = [3, str.length, 1000];

  for (let i = -N, l = len; digits.length < len / N; i -= N, l -= N) {
    digits.unshift(str.slice(i, l));
  }

  function add(m) {
    if (+digits[digits.length - m] + numToAdd < max) {
      let n = +digits[digits.length - m];
      digits[digits.length - m] = String(Number(n + numToAdd));
    } else {
      const M = m + 1;
      if (+digits[digits.length - M] + numToAdd < max) {
        let n = +digits[digits.length - M];
        digits[digits.length - M] = String(Number(n + numToAdd));
        digits[digits.length - (M - 1)] = "0".repeat(N);
      } else {
          if (digits[digits.length - (m + 1)]) {
            digits[digits.length - (M - 1)] = "0".repeat(N);
            add(m + 1);
          }
      }
    }
    return digits.join("")
  }
  return add(1);

}

console.log(
  addNumberToString(message1, 1)   
, addNumberToString(message2, 1)
,  addNumberToString(message3, 1)
);

1 个答案:

答案 0 :(得分:2)

  • 使用setIsLongpressEnabled(isLongpressEnabled)禁用longpress 在你的gestureDetector上。
  • 使用计时器或0.5秒后检查一些按下标志的状态 线程。

尝试:

public boolean onTouchEvent(MotionEvent event) {
        if (mGestureDetector.onTouchEvent(event)== true)
        {
            //Fling or other gesture detected (not logpress because it is disabled)
        }
        else
        {
            //Manually handle the event.
            if (event.getAction() == MotionEvent.ACTION_DOWN)
            {
                //Remember the time and press position
                Log.e("test","Action down");
            }
            if (event.getAction() == MotionEvent.ACTION_MOVE)
            {
                //Check if user is actually longpressing, not slow-moving 
                // if current position differs much then press positon then discard whole thing
                // If position change is minimal then after 0.5s that is a longpress. You can now process your other gestures 
                Log.e("test","Action move");
            }
            if (event.getAction() == MotionEvent.ACTION_UP)
            {
                //Get the time and position and check what that was :)
                Log.e("test","Action down");
            }

        }
        return true;
    }