//隔一秒再开放点击,防止快速点击button.setEnabled(false);new Handler().postDelayed(new Runnable() { public void run() { button.setEnabled(true); }}, 1);