使用ValueAnimator做一个TextView闪烁不同颜色(Using a ValueAnim

2019-07-22 19:42发布

我想用一个ValueAnimator做出TextView的文本颜色闪烁,两者之间的两次不同的颜色,但我想创建XML格式的动画。 我找不到任何的例子。 任何帮助将不胜感激。

更新

下面的代码运行完美。 从颜色变化的黑色到蓝,蓝黑色,黑色变为蓝色,蓝黑色与在500ms的每个反向重复之间。 但是我试图让这个从一个动画xml文件的工作。

ValueAnimator colorAnim = ObjectAnimator.OfInt(objectToFlash, "textColor", (int)fromColor, (int)toColor);
colorAnim.SetDuration(500);
colorAnim.SetEvaluator(new ArgbEvaluator());
colorAnim.RepeatCount = 3;
colorAnim.RepeatMode = ValueAnimatorRepeatMode.Reverse;

XML

<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
        android:propertyName="textColor"        
        android:duration="500"
        android:valueFrom="@color/black"
        android:valueTo="@color/ei_blue"
        android:repeatCount="3"
        android:repeatMode="reverse" /> 

ValueAnimator anim = (ObjectAnimator)AnimatorInflater.LoadAnimator(Activity, Resource.Animator.blinking_text);
anim.SetTarget(objectToFlash);

使用XML导致的颜色TextView的文本颜色改变多次,因为它可以在500ms内。

更新我想我需要的是关键帧以XML什么OfInt调用编程做模拟。 现在尝试这一点,但至今没有运气。

Answer 1:

试试这个:

private static final int RED = 0xffFF8080;
private static final int BLUE = 0xff8080FF;

ValueAnimator colorAnim = ObjectAnimator.ofInt(myTextView, "backgroundColor", RED, BLUE);
        colorAnim.setDuration(3000);
        colorAnim.setEvaluator(new ArgbEvaluator());
        colorAnim.setRepeatCount(ValueAnimator.INFINITE);
        colorAnim.setRepeatMode(ValueAnimator.REVERSE);
        colorAnim.start();

尝试通过XML这个未经测试方法:* RES /动画/ property_animator.xml *

<set >

<objectAnimator
    android:propertyName="backgroundColor"
    android:duration="3000"
    android:valueFrom="#FFFF8080"
    android:valueTo="#FF8080FF"
    android:repeatCount="-1"
    android:repeatMode="reverse" />
</set>

现在在Java代码:

AnimatorSet set = (AnimatorSet) AnimatorInflater.loadAnimator(myContext,
R.anim.property_animator);
set.setTarget(myTextView);
set.start();


Answer 2:

你描述的问题是,在XML中指定的对象动画师没有正确分配的色彩插值的ArgbEvaluator。

要解决此问题,创建对象的动画XML作为你的愿望颜色之间的补间。 然后,在源代码中,执行以下操作以确保由动画制作者所使用的评估器是一个ArgbEvaluator:

ObjectAnimator colorAnimator = (ObjectAnimator)AnimatorInflater.loadAnimator(this, R.animator.color_rotation);
colorAnimator.setTarget(objectToFlash);
colorAnimator.setEvaluator(new ArgbEvaluator());
colorAnimator.start();


Answer 3:

从API LEVEL> 21相同的效果开始可以与静态方法来制备ObjectAnimator.ofArgb这样的:

@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
    private void animateText(TextView text) {
        ObjectAnimator animator = ObjectAnimator.ofArgb(text, "textColor", Color.WHITE, Color.RED);
        animator.setDuration(500);
        animator.setRepeatCount(3);
        animator.setRepeatMode(ValueAnimator.REVERSE);
        animator.start();
    }


文章来源: Using a ValueAnimator to make a TextView blink different colors