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)
548k questions
547k answers
4 comments
86.3k users