Android :Text Animation

前端 未结 2 1974
春和景丽
春和景丽 2020-12-10 19:08

I am working in android.. i want to move my text in animation.

this is the xml code which i am using:-

android:shareInterpolator=\"true\">
         


        
2条回答
  •  遥遥无期
    2020-12-10 19:42

    you can do this by using following steps.

    1.create a animation.xml

    2.put this code in this animation.xml

    
    
        
        
        
    
    

    put this file into res/anim folder of your application.

    write following code for your textview on which you want to make animation.

            Animation animation = AnimationUtils.loadAnimation(this,R.anim.animation);
    
            animation.setAnimationListener(this);
    
            View animatedView = findViewById(R.id.textview);
    
              animatedView.startAnimation(animation);
    

    I hope now you can understand this easily .

提交回复
热议问题