As the title, is there any way to call a function after delay (1 second for example) in Kotlin?
Kotlin
There is also an option to use Handler -> postDelayed
Handler -> postDelayed
Handler().postDelayed({ //doSomethingHere() }, 1000)
1.4m articles
1.4m replys
5 comments
57.0k users