Home
last modified time | relevance | path

Searched refs:TaskView (Results 1 – 25 of 44) sorted by relevance

12

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DTaskView.kt107 open class TaskView in <lambda>() class
207 protected val primarySplitTranslationProperty: FloatProperty<TaskView> in <lambda>()
214 protected val secondarySplitTranslationProperty: FloatProperty<TaskView> in <lambda>()
221 protected val primaryDismissTranslationProperty: FloatProperty<TaskView> in <lambda>()
225 protected val secondaryDismissTranslationProperty: FloatProperty<TaskView> in <lambda>()
229 protected val primaryTaskOffsetTranslationProperty: FloatProperty<TaskView> in <lambda>()
236 protected val secondaryTaskOffsetTranslationProperty: FloatProperty<TaskView> in <lambda>()
243 protected val taskResistanceTranslationProperty: FloatProperty<TaskView> in <lambda>()
466 context.obtainStyledAttributes(attrs, R.styleable.TaskView, defStyleAttr, defStyleRes).use { in <lambda>()
606 TaskOverlayFactory.getEnabledShortcuts(this@TaskView, it).forEach { shortcut -> in <lambda>()
[all …]
DRecentsView.java215 import com.android.quickstep.views.TaskView.TaskContainer;
489 private TaskView mSelectedTask = null;
529 private final ViewPool<TaskView> mTaskViewPool;
587 TaskView taskView = getTaskViewByTaskId(taskId);
609 TaskView taskView = getTaskViewByTaskId(taskId);
710 private TaskView mSplitHiddenTaskView;
712 private TaskView mSecondSplitHiddenView;
755 private TaskView mMovingTaskView;
1021 TaskView taskView = getTaskViewByTaskId(taskId); in onTaskThumbnailChanged()
1038 TaskView tv = requireTaskViewAt(i); in onTaskIconChanged()
[all …]
DTaskThumbnailViewDeprecated.java59 import com.android.quickstep.views.TaskView.FullscreenDrawParams;
144 private TaskView.FullscreenDrawParams mFullscreenParams;
369 public void setFullscreenParams(TaskView.FullscreenDrawParams fullscreenParams) { in setFullscreenParams()
443 public TaskView getTaskView() { in getTaskView()
444 return (TaskView) getParent(); in getTaskView()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DGroupTask.java23 import com.android.quickstep.views.TaskView;
41 @TaskView.Type
49 this(t1, t2, splitBounds, t2 != null ? TaskView.Type.GROUPED : TaskView.Type.SINGLE); in GroupTask()
53 @TaskView.Type int taskViewType) { in GroupTask()
DDesktopTask.java21 import com.android.quickstep.views.TaskView;
36 super(tasks.get(0), null, null, TaskView.Type.DESKTOP); in DesktopTask()
DAppPairsController.java72 import com.android.quickstep.views.TaskView;
113 public boolean canSaveAppPair(TaskView taskView) { in canSaveAppPair()
138 List<TaskView.TaskContainer> containers = gtv.getTaskContainers(); in canSaveAppPair()
175 List<TaskView.TaskContainer> containers = gtv.getTaskContainers(); in saveAppPair()
/packages/apps/Launcher3/quickstep/tests/src/com/android/quickstep/
DTaplDigitalWellBeingToastTest.java34 import com.android.quickstep.views.TaskView;
86 final TaskView task = getOnceNotNull("No latest task", launcher -> getLatestTask(launcher)); in getToast()
89 TaskView.TaskContainer taskContainer = task.getTaskContainers().get(0); in getToast()
96 private TaskView getLatestTask(Launcher launcher) { in getLatestTask()
DTaskViewTest.java41 import com.android.quickstep.views.TaskView;
59 private TaskView mTaskView;
73 mTaskView = new TaskView(mContext, null, 0, 0, mFocusAnimator, mHoverAnimator); in setup()
DDesktopSystemShortcutTest.kt36 import com.android.quickstep.views.TaskView
66 private val taskView: TaskView = mock()
189 private fun createTaskContainer(task: Task): TaskView.TaskContainer { in createTaskContainer()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DLauncherSwipeHandlerV2.java56 import com.android.quickstep.views.TaskView;
83 @Nullable TaskView targetTaskView) { in createHomeAnimationFactory()
95 TaskView sourceTaskView = mRecentsView == null && targetTaskView == null in createHomeAnimationFactory()
119 public TaskView getTargetTaskView() { in createHomeAnimationFactory()
132 View workspaceView, @Nullable TaskView targetTaskView) {
221 public TaskView getTargetTaskView() {
298 private View findWorkspaceView(List<IBinder> launchCookies, TaskView sourceTaskView) {
DTaskShortcutFactory.java59 import com.android.quickstep.views.TaskView;
60 import com.android.quickstep.views.TaskView.TaskContainer;
110 TaskView taskView = taskContainer.getTaskView();
131 private final TaskView mTaskView;
134 public SplitSelectSystemShortcut(RecentsViewContainer container, TaskView taskView, in SplitSelectSystemShortcut()
178 private final TaskView mTaskView;
302 final TaskView taskView = taskContainer.getTaskView();
335 final TaskView taskView = taskContainer.getTaskView();
417 private final TaskView mTaskView;
DOverviewCommandHelper.java51 import com.android.quickstep.views.TaskView;
184 private TaskView getNextTask(RecentsView view) { in getNextTask()
185 final TaskView runningTaskView = view.getRunningTaskView(); in getNextTask()
190 final TaskView nextTask = view.getNextTaskView(); in getNextTask()
195 private boolean launchTask(RecentsView recents, @Nullable TaskView taskView, CommandInfo cmd) { in launchTask()
297 TaskView tv = (currentPage >= 0 in executeCommand()
299 ? (TaskView) visibleRecentsView.getPageAt(currentPage) in executeCommand()
DTaskOverlayFactory.java48 import com.android.quickstep.views.TaskView;
49 import com.android.quickstep.views.TaskView.TaskContainer;
61 public static List<SystemShortcut> getEnabledShortcuts(TaskView taskView, in getEnabledShortcuts()
289 public void setFullscreenParams(TaskView.FullscreenDrawParams fullscreenParams) {} in setFullscreenParams()
DTaskViewUtils.java84 import com.android.quickstep.views.TaskView;
107 public static TaskView findTaskViewToLaunch( in findTaskViewToLaunch()
109 if (v instanceof TaskView) { in findTaskViewToLaunch()
110 TaskView taskView = (TaskView) v; in findTaskViewToLaunch()
122 TaskView taskView = recentsView.getTaskViewAt(i); in findTaskViewToLaunch()
152 TaskView taskView = recentsView.getTaskViewByTaskId(openingTaskId); in findTaskViewToLaunch()
161 @NonNull TaskView v, in createRecentsWindowAnimator()
603 TaskView taskView = findTaskViewToLaunch(recentsView, v, appTargets); in composeRecentsLaunchAnimator()
DRecentsActivity.java90 import com.android.quickstep.views.TaskView;
262 if (!(v instanceof TaskView)) { in getActivityLaunchOptions()
266 final TaskView taskView = (TaskView) v; in getActivityLaunchOptions()
319 @NonNull TaskView taskView, in composeRecentsLaunchAnimator()
DSwipeUpAnimationLogic.java54 import com.android.quickstep.views.TaskView;
247 public TaskView getTargetTaskView() { in getTargetTaskView()
338 TaskView targetTaskView = homeAnimationFactory.getTargetTaskView(); in getWindowAnimationToHomeInternal()
400 final TaskView mTargetTaskView;
DAbsSwipeUpHandler.java141 import com.android.quickstep.views.TaskView;
142 import com.android.quickstep.views.TaskView.TaskContainer;
926 TaskView runningTask = mRecentsView.getRunningTaskView();
927 TaskView centermostTask = mRecentsView.getTaskViewNearestToCenterOfScreen();
1259 TaskView nextPageTaskView = mRecentsView != null
1261 TaskView currentPageTaskView = mRecentsView != null
1462 private void doLogGesture(GestureEndTarget endTarget, @Nullable TaskView targetTask) {
1516 @Nullable TaskView targetTaskView);
1951 TaskView taskToLaunch = mRecentsView == null ? null : mRecentsView.getNextPageTaskView();
2139 TaskView updatedTaskView = mRecentsView.updateThumbnail(mTaskSnapshotCache, refreshView);
[all …]
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/
DPortraitOverviewStateTouchHelper.java27 import com.android.quickstep.views.TaskView;
67 TaskView taskView = mRecentsView.getNextPageTaskView(); in shouldSwipeDownReturnToApp()
80 TaskView taskView = mRecentsView.getCurrentPageTaskView(); in createSwipeDownToTaskAppAnimation()
DTaskViewTouchController.java48 import com.android.quickstep.views.TaskView;
87 private TaskView mTaskBeingDragged;
161 TaskView view = mRecentsView.getTaskViewAt(i); in onControllerInterceptTouchEvent()
DQuickSwitchTouchController.java52 import com.android.quickstep.views.TaskView;
152 TaskView tv = mOverviewPanel.getTaskViewAt(0); in updateFullscreenProgress()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/fallback/
DFallbackRecentsView.java52 import com.android.quickstep.views.TaskView;
124 TaskView tv = getTaskViewByTaskId(mHomeTask.key.id); in onPrepareGestureEndAnimation()
159 protected TaskView getHomeTaskView() { in getHomeTaskView()
232 public void initiateSplitSelect(TaskView taskView, in initiateSplitSelect()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
DTaskbarUIController.java46 import com.android.quickstep.views.TaskView;
47 import com.android.quickstep.views.TaskView.TaskContainer;
257 TaskView foundTaskView = recents.getTaskViewByTaskId(foundTask.key.id); in triggerSecondAppForSplit()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/task/thumbnail/
DTaskThumbnailView.kt40 import com.android.quickstep.views.TaskView in <lambda>()
55 (parent as TaskView).taskViewData, in <lambda>()
/packages/apps/Launcher3/quickstep/tests/multivalentTests/src/com/android/quickstep/util/
DSplitAnimationControllerTest.kt37 import com.android.quickstep.views.TaskView
38 import com.android.quickstep.views.TaskView.TaskContainer
61 private val mockTaskView: TaskView = mock()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/states/
DOverviewState.java36 import com.android.quickstep.views.TaskView;
209 TaskView taskView = recentsView.getRunningTaskView();

12