Searched refs:stackPos (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
D | BubbleFlyoutView.java | 232 void animateUpdate(Bubble.FlyoutMessage flyoutMessage, PointF stackPos, in animateUpdate() argument 240 fade(true /* in */, stackPos, hideDot, () -> {} /* after */); in animateUpdate() 243 fade(false /* in */, stackPos, hideDot, afterFadeOut); in animateUpdate() 256 private void fade(boolean in, PointF stackPos, boolean hideDot, Runnable afterFade) { in fade() argument 257 mFlyoutY = stackPos.y + (mBubbleSize - mFlyoutTextContainer.getHeight()) / 2f; in fade() 261 updateFlyoutX(stackPos.x); in fade() 263 updateDot(stackPos, hideDot); in fade() 314 void updateDot(PointF stackPos, boolean hideDot) { in updateDot() argument 323 final float dotPositionX = stackPos.x + mDotCenter[0] - adjustmentForScaleAway; in updateDot() 324 final float dotPositionY = stackPos.y + mDotCenter[1] - adjustmentForScaleAway; in updateDot() [all …]
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/animation/ |
D | StackAnimationController.java | 420 final PointF stackPos = getStackPosition(); 421 final boolean onLeft = mLayout.isFirstChildXLeftOfCenter(stackPos.x); 424 stackPos.x = onLeft ? bounds.left : bounds.right; 425 return stackPos;
|