zoom out animation in splash screen in android?

后端 未结 2 1388
傲寒
傲寒 2021-02-06 15:06

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

2条回答
  •  南方客
    南方客 (楼主)
    2021-02-06 16:06

    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.

提交回复
热议问题