我有文字,我想在背景声音中应用放大和缩小Textview中文字的动画。 就像我在Textview中有文字和声音那样#34;快速的棕色狐狸跳过懒狗"
然后首先放大并缩小单词"" 和声音播放然后"快速" 和声音快速播放以及之后。
我在网上搜索过,但只有字符动画可用。任何帮助将不胜感激。
那时我所拥有的是:
Animation fadeIn = new AlphaAnimation(0, 1);
fadeIn.setInterpolator(new DecelerateInterpolator()); //add this
fadeIn.setDuration(4000);
SpannableString text = new SpannableString("Red is a new message");
text.setSpan(new ForegroundColorSpan(Color.RED), 0, 4, 0);
writer.setMovementMethod(LinkMovementMethod.getInstance());
writer.setText(text, BufferType.SPANNABLE);
writer.startAnimation(fadeIn);
它正在全文上应用动画