Advertisement

Responsive Advertisement

Animation for layout or dialogue

  • Here I am providing the download link of anim folder and paste it into in your res folder.

  • for kotlin use ;- 

val animation = AnimationUtils.loadAnimation(requireContext(), R.anim.fade_out)
layout.startAnimation(animation)

  • for java :- Animation animation = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.zoom_animation); imageView.startAnimation(animation);

Post a Comment

0 Comments