Skip to content

Instantly share code, notes, and snippets.

@kohendrix
Created February 13, 2019 07:42
Show Gist options
  • Select an option

  • Save kohendrix/e27956792168faaf072d790e746fba56 to your computer and use it in GitHub Desktop.

Select an option

Save kohendrix/e27956792168faaf072d790e746fba56 to your computer and use it in GitHub Desktop.
Android Button Animation Sample
override fun onViewCreated(view: View?, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
view?.apply {
// animation button
findViewById<Button>(R.id.btn).let { animBtn ->
animBtn.setOnClickListener {
animBtn.startAnimation(AnimationUtils.loadAnimation(activity, R.anim.btn_on_click))
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment