Loading quickstep/src/com/android/quickstep/views/RecentsView.java +12 −1 Original line number Diff line number Diff line Loading @@ -1513,7 +1513,14 @@ public abstract class RecentsView<ACTIVITY_TYPE extends StatefulActivity<STATE_T mTaskListChangeId = -1; mFocusedTaskId = -1; if (mRecentsAnimationController != null) { if (LIVE_TILE.get() && mEnableDrawingLiveTile) { // We are still drawing the live tile, finish it now to clean up. finishRecentsAnimation(true /* toRecents */, null); } else { mRecentsAnimationController = null; } } mLiveTileParams.setTargetSet(null); mLiveTileTaskViewSimulator.setDrawsBelowRecents(true); Loading Loading @@ -2694,6 +2701,10 @@ public abstract class RecentsView<ACTIVITY_TYPE extends StatefulActivity<STATE_T ? ((TaskView) child).getPrimaryTaskOffsetTranslationProperty() : mOrientationHandler.getPrimaryViewTranslate(); translationProperty.set(child, totalTranslation); if (LIVE_TILE.get() && mEnableDrawingLiveTile && i == getRunningTaskIndex()) { mLiveTileTaskViewSimulator.taskPrimaryTranslation.value = totalTranslation; redrawLiveTile(); } } updateCurveProperties(); } Loading Loading
quickstep/src/com/android/quickstep/views/RecentsView.java +12 −1 Original line number Diff line number Diff line Loading @@ -1513,7 +1513,14 @@ public abstract class RecentsView<ACTIVITY_TYPE extends StatefulActivity<STATE_T mTaskListChangeId = -1; mFocusedTaskId = -1; if (mRecentsAnimationController != null) { if (LIVE_TILE.get() && mEnableDrawingLiveTile) { // We are still drawing the live tile, finish it now to clean up. finishRecentsAnimation(true /* toRecents */, null); } else { mRecentsAnimationController = null; } } mLiveTileParams.setTargetSet(null); mLiveTileTaskViewSimulator.setDrawsBelowRecents(true); Loading Loading @@ -2694,6 +2701,10 @@ public abstract class RecentsView<ACTIVITY_TYPE extends StatefulActivity<STATE_T ? ((TaskView) child).getPrimaryTaskOffsetTranslationProperty() : mOrientationHandler.getPrimaryViewTranslate(); translationProperty.set(child, totalTranslation); if (LIVE_TILE.get() && mEnableDrawingLiveTile && i == getRunningTaskIndex()) { mLiveTileTaskViewSimulator.taskPrimaryTranslation.value = totalTranslation; redrawLiveTile(); } } updateCurveProperties(); } Loading