1、抽象類
//實現(xiàn) View.OnClickListener 接口
public abstract class OnThrottleClickListener implements View.OnClickListener {
private static final String TAG = "OnThrottleClickListener";
private static final int SKIP_DURATION = 300;//milliseconds
private long mLastClickTime;
@Override
public void onClick(View v) {
if (System.currentTimeMillis() - mLastClickTime > SKIP_DURATION) {
onThrottleClick(v);
mLastClickTime = System.currentTimeMillis();
} else {
Log.e(TAG, "OnThrottleClickListener: 重復點擊");
}
}
protected abstract void onThrottleClick(View v);
}
//代替 new View.OnClickListener() 使用
id_tv_1.setOnClickListener(new OnThrottleClickListener() {
@Override
protected void onThrottleClick(View v) {
Log.e(TAG, "onClick: OnThrottleClickListener ");
}
});
2村怪、代理模式
//代理類實現(xiàn) View.OnClickListener 接口
public class ThrottleClickProxy implements View.OnClickListener {
private static final String TAG = "ThrottleClickProxy";
private static final int SKIP_DURATION = 300;//milliseconds
private long mLastClickTime;
//源對象
private View.OnClickListener mOriginListener;
//構造
public ThrottleClickProxy(View.OnClickListener mOriginListener) {
this.mOriginListener = mOriginListener;
}
@Override
public void onClick(View v) {
if (System.currentTimeMillis() - mLastClickTime >= SKIP_DURATION) {
mOriginListener.onClick(v);
mLastClickTime = System.currentTimeMillis();
} else {
Log.e(TAG, "ThrottleClickProxy: 重復點擊");
}
}
}
//使用
id_tv_2.setOnClickListener(new ThrottleClickProxy(new View.OnClickListener() {
@Override
public void onClick(View v) {
Log.e(TAG, "onClick: ThrottleClickProxy ");
}
}));
3姆坚、RxAndroid 之 RxBinding
implementation 'com.jakewharton.rxbinding3:rxbinding:3.0.0-alpha1'
RxView.clicks(id_tv_3)
.throttleFirst(300, TimeUnit.MILLISECONDS)
.subscribe(new Consumer<Unit>() {
@Override
public void accept(Unit unit) throws Exception {
Log.e(TAG, "onClick: throttleFirst ");
}
});
4、AOP 之 Eclipse AspectJ
//采用 AspectJX 來快速配置 Eclipse AspectJ
//project
dependencies {
classpath "com.android.tools.build:gradle:4.1.2"
//add
classpath 'com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.10'
}
plugins {
id 'com.android.application'
//add
id 'android-aspectjx'
}
//application module
dependencies {
//add
implementation 'org.aspectj:aspectjrt:1.9.5'
}
@Aspect
public class ThrottleClickAspect {
private static final String TAG = "ThrottleClickAspect";
private static final int SKIP_DURATION = 3000;
private long mLastClickTime;
//所有的 android.view.View.OnClickListener.onClick 方法都會被織入实愚,像第三方組件 RxView.clicks() 里也會
@Around("execution(* android.view.View.OnClickListener.onClick(..))")
public void aroundViewOnClick(ProceedingJoinPoint joinPoint) throws Throwable {
if (System.currentTimeMillis() - mLastClickTime >= SKIP_DURATION) {
joinPoint.proceed();
mLastClickTime = System.currentTimeMillis();
} else {
Log.e(TAG, "ThrottleClickAspect: 重復點擊");
}
}
}
- 代碼無侵入方式,直接生效了
通過注解明確指定
- 增加 @ThrottleClick 注解
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ThrottleClick {
int skipDuration() default 1000;
}
- 修改 ThrottleClickAspect 類
@Aspect
public class ThrottleClickAspect {
private static final String TAG = "ThrottleClickAspect";
private static final int SKIP_DURATION = 300;
// private int mLastClickViewId;
private long mLastClickTime;
//聲明是注解標記切點
//包路徑
@Pointcut("execution(@com.louisgeek.aop.ThrottleClick * *(..))")
public void pointcutThrottleClick() {
Log.e(TAG, "pointcutThrottleClick: ");
}
//
@Around("pointcutThrottleClick()")
public void aroundThrottleClick(ProceedingJoinPoint joinPoint) throws Throwable {
//
View view = null;
for (Object arg : joinPoint.getArgs()) {
if (arg instanceof View) {
view = (View) arg;
break;
}
}
if (view == null) {
return;
}
// 取出方法的注解
MethodSignature methodSignature = (MethodSignature) joinPoint.getSignature();
Method method = methodSignature.getMethod();
if (!method.isAnnotationPresent(ThrottleClick.class)) {
return;
}
ThrottleClick throttleClick = method.getAnnotation(ThrottleClick.class);
//
if (throttleClick == null) {
return;
}
int skipDuration = throttleClick.skipDuration();
if (skipDuration < 0) {
skipDuration = SKIP_DURATION;
}
if (System.currentTimeMillis() - mLastClickTime >= skipDuration) {
//繼續(xù)執(zhí)行
joinPoint.proceed();
mLastClickTime = System.currentTimeMillis();
} else {
Log.e(TAG, "aroundThrottleClick: 重復點擊");
}
}
}
//使用
id_tv_4.setOnClickListener(new View.OnClickListener() {
//注解標記
@ThrottleClick
@Override
public void onClick(View v) {
Log.e(TAG, "onClick: @ThrottleClick ");
}
});