Android Open Source - AndroidVideoSamples Resize Animation






From Project

Back to project page AndroidVideoSamples.

License

The source code is released under:

Apache License

If you think the Android project AndroidVideoSamples listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/**
   Copyright (c) 2014 Rory Hool//ww w.  ja v a 2s.  c  om
   
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
   
       http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
 **/

package com.roryhool.videoplayback;

import android.view.View;
import android.view.animation.Animation;
import android.view.animation.Transformation;

public class ResizeAnimation extends Animation {

   int mOriginalHeight;
   int mTargetHeight;
   int mOffsetHeight;
   int mAdjacentHeightIncrement;
   View mView;
   View mAdjacentView;
   boolean mDown;

   public ResizeAnimation( View view, int originalHeight, int targetHeight, boolean down ) {
      mView = view;
      mOriginalHeight = originalHeight;
      mTargetHeight = targetHeight;
      mOffsetHeight = targetHeight - originalHeight;
      mDown = down;
   }

   @Override
   protected void applyTransformation( float interpolatedTime, Transformation t ) {
      int newHeight;
      if ( mDown )
         newHeight = (int) ( mOffsetHeight * interpolatedTime );

      else
         newHeight = (int) ( mOffsetHeight * ( 1 - interpolatedTime ) );

      mView.getLayoutParams().height = newHeight + mOriginalHeight;
      mView.requestLayout();

      if ( mAdjacentView != null ) {
         mAdjacentView.getLayoutParams().height = mView.getLayoutParams().height + mAdjacentHeightIncrement;
         mAdjacentView.requestLayout();
      }
   }

   @Override
   public void initialize( int width, int height, int parentWidth, int parentHeight ) {
      super.initialize( width, height, parentWidth, parentHeight );
   }

   @Override
   public boolean willChangeBounds() {
      return true;
   }

   public void setAdjacentView( View adjacentView ) {
      mAdjacentView = adjacentView;
   }

   public void setAdjacentHeightIncrement( int adjacentHeightIncrement ) {
      mAdjacentHeightIncrement = adjacentHeightIncrement;
   }
}




Java Source Code List

com.roryhool.commonvideolibrary.CursorHelper.java
com.roryhool.commonvideolibrary.InputSurface.java
com.roryhool.commonvideolibrary.Intents.java
com.roryhool.commonvideolibrary.MediaHelper.java
com.roryhool.commonvideolibrary.OutputSurface.java
com.roryhool.commonvideolibrary.Resolution.java
com.roryhool.commonvideolibrary.SamplerClip.java
com.roryhool.commonvideolibrary.TextureRenderer.java
com.roryhool.commonvideolibrary.UriHelper.java
com.roryhool.commonvideolibrary.VideoResampler.java
com.roryhool.videocreation.JoinActivity.java
com.roryhool.videocreation.MainActivity.java
com.roryhool.videocreation.RenderFromSurfaceActivity.java
com.roryhool.videocreation.SurfaceEncoder.java
com.roryhool.videomanipulation.MainActivity.java
com.roryhool.videomanipulation.ResampleActivity.java
com.roryhool.videomanipulation.RotationActivity.java
com.roryhool.videomanipulation.TrimActivity.java
com.roryhool.videoplayback.ControllerBase.java
com.roryhool.videoplayback.DecodeWithMediaCodecActivity.java
com.roryhool.videoplayback.MainActivity.java
com.roryhool.videoplayback.MediaCodecDecodeController.java
com.roryhool.videoplayback.MediaPlayerController.java
com.roryhool.videoplayback.PlayWithMediaPlayerActivity.java
com.roryhool.videoplayback.PlaybackTimer.java
com.roryhool.videoplayback.ResizeAnimation.java
com.roryhool.videoplayback.ScaledTextureView.java
com.roryhool.videoplayback.VideoPlayerView.java