HomeSort by relevance Sort by last modified time
    Searched defs:TaskView (Results 1 - 2 of 2) sorted by null

  /packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
TaskView.java 62 public class TaskView extends FrameLayout implements TaskCallbacks, PageCallbacks {
64 private static final String TAG = TaskView.class.getSimpleName();
84 public static final Property<TaskView, Float> ZOOM_SCALE =
85 new FloatProperty<TaskView>("zoomScale") {
87 public void setValue(TaskView taskView, float v) {
88 taskView.setZoomScale(v);
92 public Float get(TaskView taskView) {
93 return taskView.mZoomScale
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskView.java 64 * A {@link TaskView} represents a fixed view of a task. Because the TaskView's layout is directed
66 * the view hierarchy, but not upwards from any of its children (the TaskView will relayout itself
69 public class TaskView extends FixedSizeFrameLayout implements Task.TaskCallbacks,
72 /** The TaskView callbacks */
74 void onTaskViewClipStateChanged(TaskView tv);
82 public static final Property<TaskView, Float> DIM_ALPHA_WITHOUT_HEADER =
83 new FloatProperty<TaskView>("dimAlphaWithoutHeader") {
85 public void setValue(TaskView tv, float dimAlpha) {
90 public Float get(TaskView tv)
    [all...]

Completed in 240 milliseconds