こんにちは私はリストビューのスケールアニメーションを作成するこのコードを見ました
public class ViewAnimation extends Animation {
float centerX, centerY;
public ViewAnimation3(){}
@Override
public void initialize(int width, int height, int parentWidth, int parentHeight) {
super.initialize(width, height, parentWidth, parentHeight);
centerX = width/2.0f;
centerY = height/2.0f;
setDuration(2500);
setFillAfter(true);
setInterpolator(new LinearInterpolator());
}
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
final Matrix matrix = t.getMatrix();
matrix.setScale(interpolatedTime, interpolatedTime);
matrix.preTranslate(-centerX, -centerY);
matrix.postTranslate(centerX, centerY);
}
}
これにより、左上のポイントからではなく、アクティビティの中心からアニメーションが作成されることはわかっていますが、これらのポイントがどこにあるのか(-centerX、-centerY)、およびアニメーションの左上隅が何であるかがわかりません。または表示!!