android 防止按钮连续点击的方法(Button,ImageButton等) 防止按钮连续点击其实实现很简单共通方法:
public void onClick(View v) { if (Utils.isFastDoubleClick()) { return; }}