HomeSort by relevance Sort by last modified time
    Searched refs:stackScroll (Results 1 - 5 of 5) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewScroller.java 53 * A Property wrapper around the <code>stackScroll</code> functionality handled by the
58 new FloatProperty<TaskStackViewScroller>("stackScroll") {
206 float stackScroll = getStackScroll();
209 if (!Recents.getConfiguration().isLowRamDevice || stackScroll < mLayoutAlgorithm.mMinScrollP
210 || stackScroll > mLayoutAlgorithm.mMaxScrollP) {
223 fling(0 /* downScrollP */, 0 /* downY */, algorithm.percentageToScroll(stackScroll),
229 ValueAnimator animator = ObjectAnimator.ofFloat(stackScroll, newScrollP);
230 mFlingAnimationUtils.apply(animator, algorithm.percentageToScroll(stackScroll),
235 float newScrollP = algorithm.getClosestTaskP(stackScroll,
344 writer.print(" stackScroll:"); writer.print(mStackScrollP)
    [all...]
TaskStackLayoutAlgorithm.java 581 public void addUnfocusedTaskOverride(Task task, float stackScroll) {
583 mFocusedRange.offset(stackScroll);
584 mUnfocusedRange.offset(stackScroll);
588 float unfocusedTaskProgress = stackScroll + mUnfocusedRange.getAbsoluteX(unfocusedRangeX);
599 public void addUnfocusedTaskOverride(TaskView taskView, float stackScroll) {
600 mFocusedRange.offset(stackScroll);
601 mUnfocusedRange.offset(stackScroll);
607 float unfocusedTaskProgress = stackScroll + mUnfocusedRange.getAbsoluteX(unfocusedRangeX);
    [all...]
TaskStackViewTouchHandler.java 269 float stackScroll = mScroller.getStackScroll();
273 stackScroll);
TaskStackView.java 726 * {@param stackScroll} and {@param focusState}.
728 public void getLayoutTaskTransforms(float stackScroll, int focusState, ArrayList<Task> tasks,
734 mLayoutAlgorithm.getStackTransform(task, stackScroll, focusState, transform, null,
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/lowram/
TaskStackLowRamLayoutAlgorithm.java 122 public TaskViewTransform getTransform(int taskIndex, float stackScroll,
131 y = getTaskTopFromIndex(taskIndex) - percentageToScroll(stackScroll);
137 y = (windowHeight - mTaskRect.height()) / 2 - percentageToScroll(stackScroll);

Completed in 145 milliseconds