色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

您的位置:首頁技術(shù)文章
文章詳情頁

Android kotlin使用注解實(shí)現(xiàn)防按鈕連點(diǎn)功能的示例

瀏覽:72日期:2022-09-20 16:39:39
SingleClick:

@Retention(AnnotationRetention.RUNTIME)@Target(AnnotationTarget.FUNCTION)annotation class SingleClick( // 點(diǎn)擊間隔時間,毫秒 val value: Long = 500)SingleClickAspect:

import android.os.SystemClockimport org.aspectj.lang.ProceedingJoinPointimport org.aspectj.lang.annotation.Aroundimport org.aspectj.lang.annotation.Aspectimport org.aspectj.lang.annotation.Pointcutimport org.aspectj.lang.reflect.MethodSignature@Aspectclass SingleClickAspect { /** * 定義切點(diǎn),標(biāo)記切點(diǎn)為所有被@SingleClick注解的方法 * 注意:這里 你的包名.SingleClick 需要替換成 * 你自己項(xiàng)目中SingleClick這個類的全路徑 */ @Pointcut('execution(@你的包名.SingleClick * *(..))') fun methodAnnotated() { } /** * 定義一個切面方法,包裹切點(diǎn)方法 */ @Around('methodAnnotated()') @Throws(Throwable::class) fun aroundJoinPoint(joinPoint: ProceedingJoinPoint) { try { // 取出方法的注解 val signature = joinPoint.signature as MethodSignature val method = signature.method // 檢查方法是否有注解 val hasAnnotation = method != null && method.isAnnotationPresent(SingleClick::class.java) if (hasAnnotation) {// 計(jì)算點(diǎn)擊間隔,沒有注解默認(rèn)500,有注解按注解參數(shù)來,注解參數(shù)為空默認(rèn)500;val singleClick = method.getAnnotation(SingleClick::class.java)val interval = singleClick.value// 檢測間隔時間是否達(dá)到預(yù)設(shè)時間并且線程空閑if (canClick(interval)) { joinPoint.proceed()} } else {joinPoint.proceed() } } catch (e: Exception) { // 出現(xiàn)異常不攔截點(diǎn)擊事件 joinPoint.proceed() } } // 判斷是否響應(yīng)點(diǎn)擊 private fun canClick(interval: Long): Boolean { val time = SystemClock.elapsedRealtime() val timeInterval = Math.abs(time - mLastClickTime) if (timeInterval > interval) { mLastClickTime = time return true } return false } companion object { // 最后一次點(diǎn)擊的時間 private var mLastClickTime: Long = 0 }}build.gradle(項(xiàng)目):

buildscript { dependencies { classpath ’com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.4’ }}build.gradle(APP):

plugins { id ’android-aspectjx’}使用:

<?xml version='1.0' encoding='utf-8'?><androidx.constraintlayout.widget.ConstraintLayout xmlns:android='http://schemas.android.com/apk/res/android' xmlns:app='http://schemas.android.com/apk/res-auto' xmlns:tools='http://schemas.android.com/tools' android:layout_width='match_parent' android:layout_height='match_parent' tools:context='.MainActivity'> <TextView android:onClick='onTextClick' android:layout_width='wrap_content' android:layout_height='wrap_content' android:text='Hello World!' app:layout_constraintBottom_toBottomOf='parent' app:layout_constraintLeft_toLeftOf='parent' app:layout_constraintRight_toRightOf='parent' app:layout_constraintTop_toTopOf='parent' /></androidx.constraintlayout.widget.ConstraintLayout>

class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) } @SingleClick(800) fun onTextClick(view: View) { }}

以上就是Android kotlin使用注解實(shí)現(xiàn)防按鈕連點(diǎn)功能的示例的詳細(xì)內(nèi)容,更多關(guān)于Android kotlin實(shí)現(xiàn)防按鈕連點(diǎn)功能的資料請關(guān)注好吧啦網(wǎng)其它相關(guān)文章!

標(biāo)簽: Android
相關(guān)文章:
主站蜘蛛池模板: 午夜欧美性欧美 | 国产色爽女小说免费看 | 色综合久久88一加勒比 | 国产一区二区亚洲精品天堂 | 黄网站色成年小说系列 | 国产精品久久国产三级国不卡顿 | 亚洲视色 | 亚洲香蕉影院 | 亚洲第一se情网站 | 国产九九免费视频网站 | 99精品国产在现线免费 | 日韩三及片 | 亚洲免费视频在线观看 | 欧美俄罗斯一级毛片激情 | 成人精品一级毛片 | 久青草免费在线视频 | 欧美不卡视频在线观看 | 九九久久免费视频 | 香蕉成人在线视频 | 精品国产97在线观看 | 成年人网站在线观看免费 | 国产主播第一页 | 日韩视频观看 | 欧美精品亚洲人成在线观看 | 韩日一级视频 | 99在线观看巨臀大臀视频 | 欧美色综合高清视频在线 | 欧美特级 | 在线国产日韩 | 香蕉毛片| 亚洲欧美一级久久精品 | 久久久久久久久久综合情日本 | 亚洲自偷自拍另类12p | 在线欧美自拍 | 国产高清片| 国产免费观看a大片的网站 国产免费黄色网址 | 亚洲撸| 亚洲欧美字幕 | 精品一久久 | 亚欧人成精品免费观看 | 日韩欧美中文字幕在线视频 |