2021
03-14
03-14
Android kotlin使用注解实现防按钮连点功能的示例
SingleClick:@Retention(AnnotationRetention.RUNTIME)@Target(AnnotationTarget.FUNCTION)annotationclassSingleClick(//点击间隔时间,毫秒valvalue:Long=500)SingleClickAspect:importandroid.os.SystemClockimportorg.aspectj.lang.ProceedingJoinPointimportorg.aspectj.lang.annotation.Aroundimportorg.aspectj.lang.annotation.Aspectimportorg.aspectj.lang.annotation.Pointcutimportorg.aspectj.lan...
继续阅读 >