2012-10-05 17:27:12 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2013-11-11 10:41:12 -08:00
|
|
|
package org.mozilla.gecko.widget;
|
2012-10-05 17:27:12 -07:00
|
|
|
|
2013-05-07 10:04:11 -07:00
|
|
|
import org.mozilla.gecko.animation.HeightChangeAnimation;
|
|
|
|
|
2012-10-05 17:27:12 -07:00
|
|
|
import android.content.Context;
|
|
|
|
import android.util.AttributeSet;
|
|
|
|
import android.view.animation.Animation;
|
|
|
|
import android.view.animation.DecelerateInterpolator;
|
|
|
|
import android.widget.RelativeLayout;
|
|
|
|
|
|
|
|
public class AnimatedHeightLayout extends RelativeLayout {
|
|
|
|
private static final String LOGTAG = "GeckoAnimatedHeightLayout";
|
|
|
|
private static final int ANIMATION_DURATION = 100;
|
|
|
|
private boolean mAnimating = false;
|
|
|
|
|
2013-06-11 10:01:35 -07:00
|
|
|
public AnimatedHeightLayout(Context context) {
|
|
|
|
super(context, null);
|
|
|
|
}
|
|
|
|
|
2012-10-05 17:27:12 -07:00
|
|
|
public AnimatedHeightLayout(Context context, AttributeSet attrs) {
|
2013-06-11 10:01:35 -07:00
|
|
|
super(context, attrs, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
public AnimatedHeightLayout(Context context, AttributeSet attrs, int defStyle) {
|
|
|
|
super(context, attrs, defStyle);
|
2012-10-05 17:27:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
|
|
|
|
int oldHeight = getMeasuredHeight();
|
|
|
|
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
|
|
|
|
int newHeight = getMeasuredHeight();
|
|
|
|
|
|
|
|
if (!mAnimating && oldHeight != 0 && oldHeight != newHeight) {
|
|
|
|
mAnimating = true;
|
|
|
|
setMeasuredDimension(getMeasuredWidth(), oldHeight);
|
|
|
|
|
|
|
|
// Animate the difference of suggestion row height
|
|
|
|
Animation anim = new HeightChangeAnimation(this, oldHeight, newHeight);
|
|
|
|
anim.setDuration(ANIMATION_DURATION);
|
|
|
|
anim.setInterpolator(new DecelerateInterpolator());
|
|
|
|
anim.setAnimationListener(new Animation.AnimationListener() {
|
2013-02-26 21:48:00 -08:00
|
|
|
@Override
|
2012-10-05 17:27:12 -07:00
|
|
|
public void onAnimationStart(Animation animation) {}
|
2013-02-26 21:48:00 -08:00
|
|
|
@Override
|
2012-10-05 17:27:12 -07:00
|
|
|
public void onAnimationRepeat(Animation animation) {}
|
2013-02-26 21:48:00 -08:00
|
|
|
@Override
|
2012-10-05 17:27:12 -07:00
|
|
|
public void onAnimationEnd(Animation animation) {
|
|
|
|
post(new Runnable() {
|
2013-02-26 21:48:00 -08:00
|
|
|
@Override
|
2012-10-05 17:27:12 -07:00
|
|
|
public void run() {
|
2012-11-27 11:14:04 -08:00
|
|
|
finishAnimation();
|
2012-10-05 17:27:12 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
startAnimation(anim);
|
|
|
|
}
|
|
|
|
}
|
2012-11-27 11:14:04 -08:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onDetachedFromWindow() {
|
|
|
|
super.onDetachedFromWindow();
|
|
|
|
finishAnimation();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void finishAnimation() {
|
|
|
|
if (mAnimating) {
|
|
|
|
getLayoutParams().height = LayoutParams.WRAP_CONTENT;
|
|
|
|
mAnimating = false;
|
|
|
|
}
|
|
|
|
}
|
2012-10-05 17:27:12 -07:00
|
|
|
}
|