package com.quark.utils;
/**
* Created by Administrator on 11/19 0019.
*/
public class ClickHelper {
private static long lastClickTime;
public static boolean isFastDoubleClick() {
long time = System.currentTimeMillis();
long timeD = time - lastClickTime;
if (0 < timeD && timeD < 800) {
return true;
}
lastClickTime = time;
return false;
}
}