Merge "Implements LAUNCHER_ITEM_DROP_COMPLETED event." into ub-launcher3-rvc-dev

This commit is contained in:
Thiru Ramasamy
2020-05-05 21:06:04 +00:00
committed by Android (Google) Code Review
2 changed files with 24 additions and 6 deletions
+13 -5
View File
@@ -248,6 +248,8 @@ public class Workspace extends PagedView<WorkspacePageIndicator>
// Handles workspace state transitions
private final WorkspaceStateTransitionAnimation mStateTransitionAnimation;
private final StatsLogManager mStatsLogManager;
/**
* Used to inflate the Workspace from XML.
*
@@ -280,6 +282,7 @@ public class Workspace extends PagedView<WorkspacePageIndicator>
// Disable multitouch across the workspace/all apps/customize tray
setMotionEventSplittingEnabled(true);
setOnTouchListener(new WorkspaceTouchListener(mLauncher, this));
mStatsLogManager = StatsLogManager.newInstance(context);
}
@Override
@@ -359,7 +362,7 @@ public class Workspace extends PagedView<WorkspacePageIndicator>
}
@Override
public void onDragStart(DropTarget.DragObject dragObject, DragOptions options) {
public void onDragStart(DragObject dragObject, DragOptions options) {
if (ENFORCE_DRAG_EVENT_ORDER) {
enforceDragParity("onDragStart", 0, 0);
}
@@ -411,10 +414,10 @@ public class Workspace extends PagedView<WorkspacePageIndicator>
// Always enter the spring loaded mode
mLauncher.getStateManager().goToState(SPRING_LOADED);
StatsLogManager.newInstance(getContext())
.log(
LauncherEvent.LAUNCHER_ITEM_DRAG_STARTED,
dragObject.originalDragInfo.buildProto(null));
mStatsLogManager.log(
LauncherEvent.LAUNCHER_ITEM_DRAG_STARTED,
dragObject.originalDragInfo.id,
dragObject.originalDragInfo.buildProto(null));
}
public void deferRemoveExtraEmptyScreen() {
@@ -1695,6 +1698,7 @@ public class Workspace extends PagedView<WorkspacePageIndicator>
@Override
public void prepareAccessibilityDrop() { }
@Override
public void onDrop(final DragObject d, DragOptions options) {
mDragViewVisualCenter = d.getVisualCenter(mDragViewVisualCenter);
CellLayout dropTargetLayout = mDropToLayout;
@@ -1886,6 +1890,10 @@ public class Workspace extends PagedView<WorkspacePageIndicator>
if (d.stateAnnouncer != null && !droppedOnOriginalCell) {
d.stateAnnouncer.completeAction(R.string.item_moved);
}
mStatsLogManager.log(
LauncherEvent.LAUNCHER_ITEM_DROP_COMPLETED,
d.dragInfo.id,
d.dragInfo.buildProto(null));
}
public void onNoCellFound(View dropTargetLayout) {
@@ -45,7 +45,9 @@ public class StatsLogManager implements ResourceBasedOverride {
@LauncherUiEvent(doc = "TASK dismissed from overview using SWIPE UP")
TASK_DISMISS_SWIPE_UP(3),
@LauncherUiEvent(doc = "User dragged a launcher item")
LAUNCHER_ITEM_DRAG_STARTED(383);
LAUNCHER_ITEM_DRAG_STARTED(383),
@LauncherUiEvent(doc = "A dragged launcher item is successfully dropped")
LAUNCHER_ITEM_DROP_COMPLETED(385);
// ADD MORE
private final int mId;
@@ -82,6 +84,14 @@ public class StatsLogManager implements ResourceBasedOverride {
// Call StatsLog method
}
/**
* Logs an event and accompanying {@link ItemInfo}
*/
public void log(LauncherEvent event, int instanceId, LauncherAtom.ItemInfo itemInfo) {
Log.d(TAG, String.format("%s(InstanceId:%s)\n%s", event.name(), instanceId, itemInfo));
// Call StatsLog method
}
/**
* Logs snapshot, or impression of the current workspace.
*/