AnimationDrawable not playing

前端 未结 6 774
独厮守ぢ
独厮守ぢ 2020-12-31 00:22

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

6条回答
  •  庸人自扰
    2020-12-31 00:38

    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

提交回复
热议问题