我正在使用 AnimatorSet 类为 listView 项的背景颜色变化设置动画:
AnimatorSet set = (AnimatorSet) AnimatorInflater.loadAnimator(activity,
R.animator.animator_bkg);
set.setTarget(childLinear);
set.start();
R.animator.animator_bkg:
<objectAnimator
android:propertyName="backgroundColor"
android:duration="3000"
android:valueFrom="@color/white"
android:valueTo="@color/redTrans"
android:repeatCount="-1"
android:repeatMode="reverse"/>
在 Lollipop 设备上,它可以完美流畅地工作,但 pre-lollopop 不会改变背景颜色,而是只会因颜色混乱而闪烁。我尝试使用库 Nineoldandroids,但没有成功。