Skip to content

Instantly share code, notes, and snippets.

View afollestad's full-sized avatar
:shipit:

Aidan Follestad afollestad

:shipit:
View GitHub Profile
import android.view.View
import java.lang.System.currentTimeMillis
private const val HALF_SECOND = 500L
/** @author Aidan Follestad (@afollestad) */
abstract class DebouncedOnClickListener(
private val delayBetweenClicks: Long = HALF_SECOND
) : View.OnClickListener {