Android examples for Animation:Collapse Animation
Create collapse Animation
//package com.java2s; import android.view.View; import android.view.animation.Animation; import android.view.animation.Transformation; public class Main { public static void collapse(final View v) { final int initialHeight = v.getMeasuredHeight(); Animation a = new Animation() { @Override//w w w .j a v a2 s .c o m protected void applyTransformation(float interpolatedTime, Transformation t) { if (interpolatedTime == 1) { v.setVisibility(View.GONE); } else { v.getLayoutParams().height = initialHeight - (int) (initialHeight * interpolatedTime); v.requestLayout(); } } @Override public boolean willChangeBounds() { return true; } }; // 1dp/ms a.setDuration((int) (initialHeight / v.getContext().getResources() .getDisplayMetrics().density)); v.startAnimation(a); } }