Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7183445
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T17:58:53+00:00 2026-05-28T17:58:53+00:00

I have a very strange problem with Android animations, I tried many different approaches

  • 0

I have a very strange problem with Android animations, I tried many different approaches and components, and still couldn’t find any explanation.

I have a FrameLayout which is a container for views, and a Button.

This FrameLayout should display only one view at a time, and when I click on the Button, I want the FrameLayout to display another view, and start an animation on the view that is removed from the FrameLayout.

The specificity here is that I only use two views, and I want to switch between these two views.

The problem:

When I click the button multiple times really fast, and then stop clicking, the two views are shown at the same time one on top off the other, and won’t disappear. The container still contains only one view though… definitely strange!

error screenshot http://i.minus.com/jDXyvUsE1LCOx.png

I was able to reproduce this with a simple example:

public class TestAnimActivity extends Activity implements OnClickListener {

private FrameLayout container;

private TextView current;
private TextView next;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    current = new TextView(this);
    current.setText("View 1 YEAH");
    next = new TextView(this);
    next.setText("       View 2 DOH");

    container = (FrameLayout) findViewById(R.id.container);
    container.addView(current);

    findViewById(R.id.button).setOnClickListener(this);
}

public void onClick(View v) {
    Animation outAnimation = AnimationUtils.loadAnimation(this, android.R.anim.fade_out);
    current.startAnimation(outAnimation);
    container.addView(next);
    container.removeView(current);

    TextView temp = current;
    current = next;
    next = temp;
}
}

As you can see the animations are being started on the views while previous ones are still running, and the way I do that may somehow be the source of the problem.

If I comment the animation related code, it works perfectly:

// Animation outAnimation = AnimationUtils.loadAnimation(this, android.R.anim.fade_out);
// current.startAnimation(outAnimation);

If I stop reusing views and create new views instead, it also works perfectly:

// next = temp;
next = new TextView(this);
next.setText("View: " + new Random().nextInt());

But I don’t want to create new views 🙂 .

It seems that the problem is related to starting animations several times on a view while adding / removing this view from its parent.

I first tried with a ViewFlipper, then a ViewAnimator, then looked up the Android source code and ended up doing this manually to reproduce the problem.

If you want the layout to be able to test by yourself, here is my main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <FrameLayout
        android:id="@+id/container"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />

    <Button
        android:id="@+id/button"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Click me fast" />

</LinearLayout>

Thank you for your time!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T17:58:54+00:00Added an answer on May 28, 2026 at 5:58 pm

    I finally found a way to fix the issue.

    When we remove a view from a ViewGroup, if there is an animation running on this view, it is automatically added to the “disappearing children” list of the ViewGroup.

    The issue seemed to appear when we tried to add to the ViewGroup a view that has been removed from it but was still in its disappearing children.

    There’s an easy way to fix that : viewGroup.clearDisappearingChildren();

    Here would be the new implementation of the onClick() method :

    public void onClick(View v) {
    
        next.clearAnimation();
        container.clearDisappearingChildren();
    
        Animation outAnimation = AnimationUtils.loadAnimation(this, android.R.anim.fade_out);
        current.startAnimation(outAnimation);
        container.addView(next);
        container.removeView(current);
    
        TextView temp = current;
        current = next;
        next = temp;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very strange problem with Apache ActiveMQ with Camel - I tried
I have a very strange problem with #any? printing true for an array that
We have very strange problem, one of our applications is continually querying server by
I have a very strange problem. Under some elusive circumstances I fail to apply
I have a very strange problem, when I try to var_dump (or print_r )
I have a very strange problem with the Delphi 2006 IDE. If the IDE
I use the memcache extension for python, and I have a very strange problem.
Im having a very strange problem, i have a complicated view that returns incorrect
We have encountered a very strange class not found problem in our web app
The problem seems very strange. I have a AJAX helper function within a same

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.