Skip to content

Instantly share code, notes, and snippets.

@seoft
Last active February 27, 2020 14:17
Show Gist options
  • Save seoft/02e04e1ce3c8bd9f6f04ec1be2397bf8 to your computer and use it in GitHub Desktop.
Save seoft/02e04e1ce3c8bd9f6f04ec1be2397bf8 to your computer and use it in GitHub Desktop.
// in activity
class SettingInFingerActivity : AppCompatActivity() {
private val click by lazy { ClickUtil(this.lifecycle) }
// (생략)
private fun initListener() {
testButton.SetOnClickListener {
click.run {
Log.i("TAG", "다중 터치 방지")
}
}
}
// (생략)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment