惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
P
Proofpoint News Feed
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
C
Check Point Blog
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
美团技术团队
D
Docker
博客园 - Franky
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

博客园 - 乱炖er

CSS/CSS3 Format/Optimize/Minify Tool 在线处理工具 macOS下生成pdf报错:No wkhtmltopdf executable found 错误:为 repo 'appstream' 下载元数据失败 : Cannot prepare internal mirrorlist: No URLs in mirrorlist Python爬虫'utf-8' codec can't decode byte 0xxx in position 1: invalid start byte的解决方案 fatal: unable to access 'https://github.com/xxx/': HTTP/2 stream 1 was not closed cleanly before end of the underlying stream Lombok requires enabled annotation processing: Do you want to enable annotation processors? visual studio code的markdown生成侧边栏目录 SpringBoot @Column SpringBoot2.6+单元测试 IDEA中SpringBoot热部署 Error: Another program is already listening on a port that one of our HTTP servers is configured to use. Shut this program down first before starting supervisord android studio右侧Gradle不显示Tasks PyCharm OSError: [Errno 48] Address already in use [Swift]扩展UIColor:实现十六进制颜色字符串与UIColor之间的相互转换 photoshop将png图片里的文字改成其他颜色 python json.dumps 中文编码问题 java.lang.RuntimeException: A TaskDescription's primary color should be opaque item2使用pem文件登陆 腾讯云服务器ssh登陆频繁断开链接的解决方案
android重复点击问题
乱炖er · 2023-07-31 · via 博客园 - 乱炖er
open class SingleClickListener(private val intervalMils: Long = 1000): OnClickListener{
    private val TAG = this.javaClass.name

    private var mLastClickTime = 0L
    override fun onClick(p0: View?) {
        Logger.logger(TAG, "onClick")
        val ct = TimeUtil.getTimestamp(true)
        if(ct - mLastClickTime > intervalMils){
            mLastClickTime = ct
            onSingleClick(p0)
        }
    }

    open fun onSingleClick(v: View?){}
}

调用

getView<View>(R.id.abc).setOnClickListener(object : SingleClickListener(5000) {
    override fun onSingleClick(v: View?) {
        //TODO
    }
})

posted @ 2023-07-31 23:40  乱炖er  阅读(58)  评论()    收藏  举报