2012年10月24日
摘要: public class Utils { private static long lastClickTime; public static boolean isFastDoubleClick() { long time = System.currentTimeMillis(); long timeD = time - lastClickTime; if ( 0 < timeD && timeD < 500) { return true; } lastClickTime = ... 阅读全文
posted @ 2012-10-24 18:13 Tristan2012 阅读(1768) 评论(0) 推荐(0)