Skip to content

Instantly share code, notes, and snippets.

@vitoksmile
Created March 3, 2025 16:08
Show Gist options
  • Save vitoksmile/4faa0b57049678f96ef444660f715789 to your computer and use it in GitHub Desktop.
Save vitoksmile/4faa0b57049678f96ef444660f715789 to your computer and use it in GitHub Desktop.
Mastering delays in Android
fun View.postDelayed(timeout: Duration, action: Runnable) {
postDelayed(action, timeout.inWholeMilliseconds)
doOnDetach { removeCallbacks(action) }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment