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
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