首次进入Activity、动画卡顿问题的解决方案

初步思路,等待Activity的转场动画完成后,再开始页面内的动画

    /**
     * Activities cannot draw during the period that their windows are animating in. In order
     * to know when it is safe to begin drawing they can override this method which will be
     * called when the entering animation has completed.
     */
    public void onEnterAnimationComplete() {
    }


你可能感兴趣的:(首次进入Activity、动画卡顿问题的解决方案)