Is There Any Way To Application Animation To The Text Of Textview Only?
Currently I have the following code: Animation anim = AnimationUtils.loadAnimation(BridgesCloseActivity.this, R.anim.slide_in_up); myTextView.startAnimation(anim); But this anima
Solution 1:
There might be a way simpler method, but if everything else fails, you could try embedding a TextView
and a BitmapDrawable
in a FrameLayout
, then apply the animation to the TextView
.
Post a Comment for "Is There Any Way To Application Animation To The Text Of Textview Only?"