I'm using a slightly modified version of an Animation posted here. Here's my version:
public class DropDownAnim extends Animation {
int maxWidth, minWidth, startingWidth;
View view;
boolean left;
public DropDownAnim(View view, int maxWidth, int minWidth, boolean left) {
this.view = view;
this.maxWidth = maxWidth;
this.minWidth = minWidth;
this.left = left;
}
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
int targetWidth = left ? maxWidth : minWidth;
int newWidth = (int) (((targetWidth -startingWidth) * interpolatedTime) + startingWidth);
view.getLayoutParams().width = newWidth;
view.requestLayout();
}
@Override
public void initialize(int width, int height, int parentWidth, int parentHeight) {
super.initialize(width, height, parentWidth, parentHeight);
this.startingWidth = width;
}
@Override
public boolean willChangeBounds() {
return true;
}
}
I've just modified it to move a LinearLayout from a minimized width of 30px to a maximized width of 300px, where left is true if the LinearLayout is expanding to the left. Then I call the Animation with a simple toggle method:
private void animateToggle() {
mExpanded = !mExpanded;
DropDownAnim anim = new DropDownAnim(this, mOpenWidth, mClosedWidth, mExpanded);
this.startAnimation(anim);
}
The content of the LinearLayout (currently, 2 Buttons) moves fluidly during both the closing and opening Animations. However, the background of the LinearLayout does not update its bounds until the Animation is finished.
I've tried adding invalidate() just before requestLayout() but that only messed things up further. Please help!