- 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);
0 Comments