zoom out animation in splash screen in android?

后端 未结 2 1422
傲寒
傲寒 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:02

    Use this in Activity Java File :

    FrameLayout mainFrame = ((FrameLayout) findViewById(R.id.FrameLayout01));
            Animation hyperspaceJumpAnimation = AnimationUtils.loadAnimation(this,
                    R.anim.hyperspace_jump);
            mainFrame.startAnimation(hyperspaceJumpAnimation);
    

    Put this code under res > anim > hyperspace_jump.xml

    
    
    
       
       
          
          
       
    
    

提交回复
热议问题