我有一个动画:
ScaleAnimation anim = new ScaleAnimation(0.0f, 0.2f , 1.0f, 1.0f, Animation.RELATIVE_TO_SELF,1.0f, Animation.RELATIVE_TO_SELF, 0.5f);
anim .setDuration(700);
anim .setFillAfter(true);
anim .setInterpolator(new DecelerateInterpolator());
我开始使用TextView
textView.startAnimation(anim);
它将我的textView从其宽度的0%缩放到20%,但它也缩放了textView中的文本。
有没有机会缩放TextView而不缩放文本大小?