animation of TextView's text size

前端 未结 3 543
小鲜肉
小鲜肉 2020-12-14 11:42

I want to be able to do a text animation and change the size of the text in a TextView. I read that there are property animations in android but if someone knows a simple co

3条回答
  •  清歌不尽
    2020-12-14 12:13

    scale.xml

    
    
        
    
    

    A function into an Activity:

    private void RunAnimation() 
    {
        Animation a = AnimationUtils.loadAnimation(this, R.anim.scale);
        a.reset();
        TextView tv = (TextView) findViewById(R.id.firstTextView);
        tv.clearAnimation();
        tv.startAnimation(a);
    }
    

    extracted and modified from here

提交回复
热议问题