LocationAnimation locationYAnimation = new LocationAnimation( this, -1, 250 );
locationYAnimation.setStartOffset( 7000 );
locationYAnimation.setDuration( 1000 );
defaultAnimationExecutor.addAnimation( locationYAnimation );
CircleAnimation circleAnimation = new CircleAnimation( this, 200, true );
circleAnimation.setStartOffset( 8000 );
circleAnimation.setDuration( 1000 );
defaultAnimationExecutor.addAnimation( circleAnimation );
CircleAnimation circleReverseAnimation = new CircleAnimation( this, 200, false );
circleReverseAnimation.setStartOffset( 9000 );
circleReverseAnimation.setDuration( 1000 );
defaultAnimationExecutor.addAnimation( circleReverseAnimation );
BackgroundColorAnimation blackBackgroundColorAnimation = new BackgroundColorAnimation( contentPane, Color.BLACK );
blackBackgroundColorAnimation.setStartOffset( 10000 );
blackBackgroundColorAnimation.setDuration( 1000 );