Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e3320e6d authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android (Google) Code Review
Browse files

Merge "Fix issue #6444627: New status bar/action bar interaction a bit disjoint" into jb-dev

parents 5b972e73 1cc2bced
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -617,6 +617,8 @@ public class ActionBarImpl extends ActionBar {
            }
            anim.setInterpolator(AnimationUtils.loadInterpolator(mContext,
                    com.android.internal.R.interpolator.decelerate_quad));
            anim.setDuration(mContext.getResources().getInteger(
                    com.android.internal.R.integer.config_mediumAnimTime));
            anim.addListener(mShowListener);
            mCurrentShowAnim = anim;
            anim.start();
@@ -660,6 +662,8 @@ public class ActionBarImpl extends ActionBar {
            }
            anim.setInterpolator(AnimationUtils.loadInterpolator(mContext,
                    com.android.internal.R.interpolator.accelerate_quad));
            anim.setDuration(mContext.getResources().getInteger(
                    com.android.internal.R.integer.config_mediumAnimTime));
            anim.addListener(mHideListener);
            mCurrentShowAnim = anim;
            anim.start();