Kotlin 启动页面倒计时功能
编写内部类,集成谷歌提供的CountDownTimer类先上代码:private inner class MyCountDownTimer( millisInFuture: Long, countDownInterval: Long, internal var tv: TextView ) : CountDownTimer(millisInFuture, countDownInterval) { override fun on