Hi,
1. You should use waitForText() instead. That method will return true
or false depending on if it finds the text you are waiting for inside
the time limit that you set.
2. The Robotium tests are run on the UI thread. Because of your
animations Robotium is not allowed to use the UI thread as it is
already in use. That is why it first does the check when the
animations have stopped (and it gets access to the UI thread).
/Renas