So I want my animation to start as soon as the activity is created, but for some reason no matter what I try will get it to start. I can get it to start by having a click ev
Try starting your animation after the window gets focus by overriding onWindowFocusChanged in your Activity:
@Override
public void onWindowFocusChanged (boolean hasFocus)
{
//Start animation here
}
See docs here: http://developer.android.com/reference/android/app/Activity.html#onWindowFocusChanged%28boolean%29