use of com.android.systemui.recents.events.activity.LaunchTaskEvent in project android_frameworks_base by crdroidandroid.
the class RecentsView method launchTask.
/** Launches a given task. */
public boolean launchTask(Task task, Rect taskBounds, int destinationStack) {
if (mTaskStackView != null) {
// Iterate the stack views and try and find the given task.
List<TaskView> taskViews = mTaskStackView.getTaskViews();
int taskViewCount = taskViews.size();
for (int j = 0; j < taskViewCount; j++) {
TaskView tv = taskViews.get(j);
if (tv.getTask() == task) {
EventBus.getDefault().send(new LaunchTaskEvent(tv, task, taskBounds, destinationStack, false));
return true;
}
}
}
return false;
}
use of com.android.systemui.recents.events.activity.LaunchTaskEvent in project android_frameworks_base by crdroidandroid.
the class RecentsView method launchFocusedTask.
/** Launches the focused task from the first stack if possible */
public boolean launchFocusedTask(int logEvent) {
if (mTaskStackView != null) {
Task task = mTaskStackView.getFocusedTask();
if (task != null) {
TaskView taskView = mTaskStackView.getChildViewForTask(task);
EventBus.getDefault().send(new LaunchTaskEvent(taskView, task, null, INVALID_STACK_ID, false));
if (logEvent != 0) {
MetricsLogger.action(getContext(), logEvent, task.key.getComponent().toString());
}
return true;
}
}
return false;
}
Aggregations