当前位置:   article > 正文

kotlin实现实时显示当前时间_android studio kotlin实时时间

android studio kotlin实时时间

在安卓中使用kotlin在textview中实时显示当前时间(精确到秒)

/**
     * 获取当前时间
     */
    @RequiresApi(Build.VERSION_CODES.O)
    fun getCurrentTime() :String{
        val current = LocalDateTime.now()
        val formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")
        val formatted = current.format(formatter)
        attendanceout_sign_time.setText(formatted.toString())
        return formatted.toString()
    }
 /**
     * 启动线程,每一秒更改一次时间
     */
    @RequiresApi(Build.VERSION_CODES.O)
    private fun initThread() {
        Thread(Runnable {
            try {
                while (true) {
                    Thread.sleep(1000)
                    runOnUiThread { getCurrentTime()
                    }
                }
            } catch (e: InterruptedException) {
                e.printStackTrace()
            }
        }).start()
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

然后在oncreate()方法中调用initThread()方法就好了,其中attendanceout_sign_time是textview的id,自己改一下就行

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/917546
推荐阅读
相关标签
  

闽ICP备14008679号