Commit 148a2e70 authored by Michael Jurka's avatar Michael Jurka Committed by Android Git Automerger
Browse files

am 367f0678: am ce552e91: Merge "Fix janky transition on All Apps tab switch" into jb-mr1.1-dev

* commit '367f0678':
  Fix janky transition on All Apps tab switch
parents af380bbf 367f0678
......@@ -282,10 +282,15 @@ public class AppsCustomizeTabHost extends TabHost implements LauncherTransitiona
reloadCurrentPage();
}
});
AnimatorSet animSet = LauncherAnimUtils.createAnimatorSet();
final AnimatorSet animSet = LauncherAnimUtils.createAnimatorSet();
animSet.playTogether(outAnim, inAnim);
animSet.setDuration(duration);
animSet.start();
post(new Runnable() {
public void run() {
animSet.start();
}
});
}
});
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment