commit | e688e1e6c87ec87928280c795d93d678b908771b | [log] [tgz] |
---|---|---|
author | Hyunyoung Song <hyunyoungs@google.com> | Wed Aug 03 10:40:18 2016 -0700 |
committer | Hyunyoung Song <hyunyoungs@google.com> | Wed Aug 03 10:40:18 2016 -0700 |
tree | ae4d57038febb88173200d002f43db5362bb8a5f | |
parent | b9b54efd59c58749ad3752e0ff0bb60733f0e057 [diff] |
Fix disco bounce crash b/30413641 Change-Id: Icb2f3f11024daa78c3f59cab8c773091b9481feb
diff --git a/src/com/android/launcher3/allapps/AllAppsTransitionController.java b/src/com/android/launcher3/allapps/AllAppsTransitionController.java index eb6c926..7eef2dd 100644 --- a/src/com/android/launcher3/allapps/AllAppsTransitionController.java +++ b/src/com/android/launcher3/allapps/AllAppsTransitionController.java
@@ -432,6 +432,9 @@ mAppsView.post(new Runnable() { @Override public void run() { + if (mDiscoBounceAnimation == null) { + return; + } mDiscoBounceAnimation.start(); } });