Loading quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java +5 −1 Original line number Diff line number Diff line Loading @@ -498,7 +498,10 @@ public class TouchInteractionService extends Service implements PluginListener<O } } if (mUncheckedConsumer != InputConsumer.NO_OP) { ActiveGestureLog.INSTANCE.addLog("onMotionEvent", event.getActionMasked()); } boolean cleanUpConsumer = (action == ACTION_UP || action == ACTION_CANCEL) && mConsumer != null && !mConsumer.getActiveConsumerInHierarchy().isConsumerDetachedFromGesture(); Loading Loading @@ -802,6 +805,7 @@ public class TouchInteractionService extends Service implements PluginListener<O if (mGestureState != null) { mGestureState.dump(pw); } SysUINavigationMode.INSTANCE.get(this).dump(pw); pw.println("TouchState:"); BaseDraggingActivity createdOverviewActivity = mOverviewComponentObserver == null ? null : mOverviewComponentObserver.getActivityInterface().getCreatedActivity(); Loading quickstep/src/com/android/quickstep/SysUINavigationMode.java +6 −0 Original line number Diff line number Diff line Loading @@ -26,6 +26,7 @@ import android.util.Log; import com.android.launcher3.util.MainThreadInitializedObject; import java.io.PrintWriter; import java.util.ArrayList; import java.util.List; Loading Loading @@ -128,6 +129,11 @@ public class SysUINavigationMode { return getMode(context) != Mode.TWO_BUTTONS; } public void dump(PrintWriter pw) { pw.println("SysUINavigationMode:"); pw.println(" mode=" + mMode.name()); } public interface NavigationModeChangeListener { void onNavigationModeChanged(Mode newMode); Loading Loading
quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java +5 −1 Original line number Diff line number Diff line Loading @@ -498,7 +498,10 @@ public class TouchInteractionService extends Service implements PluginListener<O } } if (mUncheckedConsumer != InputConsumer.NO_OP) { ActiveGestureLog.INSTANCE.addLog("onMotionEvent", event.getActionMasked()); } boolean cleanUpConsumer = (action == ACTION_UP || action == ACTION_CANCEL) && mConsumer != null && !mConsumer.getActiveConsumerInHierarchy().isConsumerDetachedFromGesture(); Loading Loading @@ -802,6 +805,7 @@ public class TouchInteractionService extends Service implements PluginListener<O if (mGestureState != null) { mGestureState.dump(pw); } SysUINavigationMode.INSTANCE.get(this).dump(pw); pw.println("TouchState:"); BaseDraggingActivity createdOverviewActivity = mOverviewComponentObserver == null ? null : mOverviewComponentObserver.getActivityInterface().getCreatedActivity(); Loading
quickstep/src/com/android/quickstep/SysUINavigationMode.java +6 −0 Original line number Diff line number Diff line Loading @@ -26,6 +26,7 @@ import android.util.Log; import com.android.launcher3.util.MainThreadInitializedObject; import java.io.PrintWriter; import java.util.ArrayList; import java.util.List; Loading Loading @@ -128,6 +129,11 @@ public class SysUINavigationMode { return getMode(context) != Mode.TWO_BUTTONS; } public void dump(PrintWriter pw) { pw.println("SysUINavigationMode:"); pw.println(" mode=" + mMode.name()); } public interface NavigationModeChangeListener { void onNavigationModeChanged(Mode newMode); Loading