缩放TextView动画而不缩放文本

时间:2018-03-14 07:13:23

标签: android animation textview scale

我有一个动画:

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而不缩放文本大小?

0 个答案:

没有答案
相关问题