How to start Animation immediately after onCreate?

前端 未结 7 1623
借酒劲吻你
借酒劲吻你 2020-12-15 06:58

I am following http://developer.android.com/guide/topics/graphics/view-animation.html#frame-animation with minor changes. I have decided to make the animation loop and want

相关标签:
7条回答
  • 2020-12-15 07:35

    As this question was asked some long time ago, I have encounter same problem in 2019 with usage of transitions-Everywhere or AndroidX Transitions. And the only solution for me was to use @Muzikant answer. Simply call in your onCreate()

    rootViewOfYourLayout.post {
                TransitionManager.beginDelayedTransition(rootViewOfYourLayout)
                someViewId.visibility = View.VISIBLE
            }
    

    And it works perfectly, for example in my case for Splash screen.

    Update
    As after some testing, it appears this solution has minor issue. Animation is started and you block the phone or move app to background, and in result when app again in foreground it's just frozen as no TransitionListener callbacks received, so in my case onTransitionEnd() wasn't called where was located logic to navigate user to next screen.

    For now this works for me without problems :

      override fun onWindowFocusChanged(hasFocus: Boolean) {
       if(hasFocus && isAnimationStarted.not()){
       rootViewOfYourLayout.post {
              TransitionManager.beginDelayedTransition(rootViewOfYourLayout)
              someViewId.visibility = View.VISIBLE
                }
      }
    }
    
    0 讨论(0)
  • 2020-12-15 07:42

    You can use the post method of any View on the activity. It should probably look like this:

    View anyView = findViewById(R.id.anyView);
    anyView.post(new Runnable()
    {
        @Override
        public void run()
        {
            // Your code goes here
        }
    });
    
    0 讨论(0)
  • 2020-12-15 07:43

    Have a flag set in onAttachedToWindow() and then in onWindowFocusChanged() check it and start the animation.

    @Override
    void onWindowFocusChanged(boolean hasFocus) {
        if (hasFocus & mbFlag) {
            // start animation.
        }
    }
    

    Update

    Simply extend the ImageView class and override onFocusChange method. Then in your activity set the focus to it by calling animImg.requestFocus(). The animation should start when it gets focused. Make sure your imageview is focusable.

    If this does not work, you may want to override the onAttachedToWindow() method also. Set a flag in there and check before starting the animation.

    @Override
    void onFocusChange(boolean hasFocus) {
        if (hasFocus) {
            // start animation.
        }
    }
    
    0 讨论(0)
  • 2020-12-15 07:43

    You need to give time to UI manager create appropiate resources BEFORE starting animation. Correct pattern is

    a) Create animation object in onCreate.
    b) Start animation object elsewhere.
    

    Don't create and start in same method.

    0 讨论(0)
  • 2020-12-15 07:46
    animation = AnimationUtils.loadAnimation(this, R.anim.push_left_out);
    
    yourobject.startanimation(animation);
    

    This may help

    0 讨论(0)
  • 2020-12-15 07:47

    It's already written in the tutorial:

    It's important to note that the start() method called on the AnimationDrawable cannot be called during the onCreate() method of your Activity, because the AnimationDrawable is not yet fully attached to the window.

    If you want to play the animation immediately, without requiring interaction, then you might want to call it from the onWindowFocusChanged() method in your Activity, which will get called when Android brings your window into focus.

    So move your call to start in one of those two places, depending on your wish. Based on your comment, move your call to start inside onWindowsFocusChanged().

    EDIT So this is "How to do it":

    @Override
    public void onWindowFocusChanged(boolean hasFocus) {
        if(hasFocus){
            textView.startAnimation(AnimationUtils.loadAnimation(MainActivity.this,
                android.R.anim.slide_in_left|android.R.anim.fade_in));
        }   
    }
    

    The points to pay attention to are:

    • do not forget to write the if/else case to check the focus
    • and delete the auto-generated "super.onWindowFocusChanged(hasFocus);"
    0 讨论(0)
提交回复
热议问题