防止快速连续点击button多次执行相同操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了防止快速连续点击button多次执行相同操作相关的知识,希望对你有一定的参考价值。
参考技术A 在android开发过程中,总会有点击事件,也总会发生快速连续点击的操作。此种情况下,如果不做判断,有时候会发生同样效果执行多次:如页面跳转一遍遍执行。所以就需要做判断。publicclassDoubleClickUtils
privatestaticlonglastClickTime;
publicstaticbooleanisDoubleClick()
longtime = System.currentTimeMillis();
longlastTime = time - lastClickTime;
if(0< lastTime && lastTime <1500)
returntrue;
lastClickTime = time;
returnfalse;
防止用户快速多次点击按钮,响应事件响应多次
- (void)todoSomething:(id)sender
{
//在这里做按钮的想做的事情。
}
- (void)starButtonClicked:(id)sender
{
//先将未到时间执行前的任务取消。
[[self class] cancelPreviousPerformRequestsWithTarget:self selector:@selector(todoSomething:)object:sender];
[self performSelector:@selector(todoSomething:) withObject:sender afterDelay:0.2f];
}
以上是关于防止快速连续点击button多次执行相同操作的主要内容,如果未能解决你的问题,请参考以下文章