我是 android 编程的新手 我想做的是在我的行上一个接一个地缩放按钮。但正在发生的事情是它们都同时扩展。
for(int xcnt = 1; xcnt < 9; ){
RelativeLayout box = (RelativeLayout) buttonBoxes.get(xcnt);
Animation animscale = new ScaleAnimation(1f, 1.5f, 1f, 1.5f,
Animation.RELATIVE_TO_SELF, (float)0.5,
Animation.RELATIVE_TO_SELF, (float)0.5);
animscale.setDuration(2000);
animscale.setStartOffset(1000); // pause for 1 second
animscale.setRepeatMode(ValueAnimator.REVERSE);
box.startAnimation(animscale);
animscale.setStartOffset(1000); // pause for 1 second
xcnt = xcnt +1;
}