我使用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();
}