I have a requirement in which i have to give zoom out effect in splash screen. Please Suggest something. I have an idea that we can keep its animation in res/anim folder and use
yu can use the view animation in order to get the zoom effect.
create an XML file in the animation folder under resource.And in the java file you must set the animation for the respective image.
Animation hyperspaceJump = AnimationUtils.loadAnimation(this, R.anim.hyperspace_jump);
image.startAnimation(hyperspaceJump);
Here my xml file name is hyperspace_jump.for more reference click here.