I have the following class to slide up a FrameLayout. It basically reduces height of the views. It works very well but the only thing is that the animation doesn't satisfy me on smoothness. It gives 10 FPS.
SlideUpDownAnimation.java
package anim;
import android.util.Log;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.Transformation;
public class SlideUpDownAnimation extends Animation {
private static final String TAG = "ANIMATION";
private View view;
private boolean isUp;
private int startHeight;
private int finalHeight;
private int difference;
public SlideUpDownAnimation(View view, boolean isUp, int finalHeight) {
this.view = view;
this.isUp = isUp;
this.startHeight = view.getMeasuredHeight();
this.finalHeight = finalHeight;
this.difference = this.finalHeight - view.getLayoutParams().height;
}
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
int newHeight;
// daha yüksek bir değerden azalarak ilerliyor demektir.
if (!isUp) {
newHeight = (int) (this.difference * (1 - interpolatedTime));
view.getLayoutParams()
.height = newHeight;
} else {
newHeight = (int) (this.startHeight - (this.difference * interpolatedTime));
view.getLayoutParams()
.height = newHeight;
}
Log.i(TAG, "Start height: " + this.startHeight + " New height: " + newHeight + " interpolated time: " + interpolatedTime);
view.requestLayout();
}
}
I set duration to 1000 milliseconds. Here's my logcat:
06-28 17:48:21.876 13403-13403/com.menulux.menu I/ANIMATION: Start height: 800 New height: 800 interpolated time: 0.0
06-28 17:48:21.876 13403-13403/com.menulux.menu I/ANIMATION: Start height: 800 New height: 800 interpolated time: 0.0
06-28 17:48:22.006 13403-13403/com.menulux.menu I/ANIMATION: Start height: 800 New height: 777 interpolated time: 0.061846644
06-28 17:48:22.116 13403-13403/com.menulux.menu I/ANIMATION: Start height: 800 New height: 739 interpolated time: 0.16699407
06-28 17:48:22.236 13403-13403/com.menulux.menu I/ANIMATION: Start height: 800 New height: 679 interpolated time: 0.33210987
06-28 17:48:22.356 13403-13403/com.menulux.menu I/ANIMATION: Start height: 800 New height: 613 interpolated time: 0.51570535
06-28 17:48:22.476 13403-13403/com.menulux.menu I/ANIMATION: Start height: 800 New height: 547 interpolated time: 0.6971313
06-28 17:48:22.591 13403-13403/com.menulux.menu I/ANIMATION: Start height: 800 New height: 493 interpolated time: 0.8468266
06-28 17:48:22.716 13403-13403/com.menulux.menu I/ANIMATION: Start height: 800 New height: 453 interpolated time: 0.9569855
06-28 17:48:22.831 13403-13403/com.menulux.menu I/ANIMATION: Start height: 800 New height: 438 interpolated time: 0.99944496
06-28 17:48:22.961 13403-13403/com.menulux.menu I/ANIMATION: Start height: 800 New height: 438 interpolated time: 1.0
06-28 17:48:23.076 13403-13403/com.menulux.menu I/ANIMATION: Start height: 800 New height: 438 interpolated time: 1.0