RecyclerView网格动画 - 奇怪的叠加效果

时间:2016-03-10 04:35:17

标签: android grid android-recyclerview

我使用RecyclerView创建一个焦点项目按比例放大的网格。但是,当效果很奇怪时,我有一个问题是加载焦点项目。我在下面添加了截图。

以下是处理扩展影响的代码:

public static synchronized void animateScaleUp(View v) {
    float currentScaleX = v.getScaleX();
    float currentScaleY = v.getScaleY();
    float targetScale = 1.2f;
    PropertyValuesHolder scaleXHolder = PropertyValuesHolder.ofFloat(View.SCALE_X, currentScaleX, targetScale);
    PropertyValuesHolder scaleYHolder = PropertyValuesHolder.ofFloat(View.SCALE_Y, currentScaleY, targetScale);
    ValueAnimator scaleAnimator = ObjectAnimator.ofPropertyValuesHolder(v, scaleXHolder, scaleYHolder);
    scaleAnimator.start();
}

Bug RecyclerView with focus scale

0 个答案:

没有答案