Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.