Home
last modified time | relevance | path

Searched refs:imeHeight (Results 1 – 14 of 14) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/
DPinnedStackListenerForwarder.java67 private void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument
69 listener.onImeVisibilityChanged(imeVisible, imeHeight); in onImeVisibilityChanged()
89 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument
91 PinnedStackListenerForwarder.this.onImeVisibilityChanged(imeVisible, imeHeight); in onImeVisibilityChanged()
110 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) {} in onImeVisibilityChanged() argument
/frameworks/base/services/core/java/com/android/server/wm/
DPinnedTaskController.java344 void setAdjustedForIme(boolean adjustedForIme, int imeHeight) { in setAdjustedForIme() argument
349 final boolean imeShowing = adjustedForIme && imeHeight > 0; in setAdjustedForIme()
350 imeHeight = imeShowing ? imeHeight : 0; in setAdjustedForIme()
351 if (imeShowing == mIsImeShowing && imeHeight == mImeHeight) { in setAdjustedForIme()
356 mImeHeight = imeHeight; in setAdjustedForIme()
357 notifyImeVisibilityChanged(imeShowing, imeHeight); in setAdjustedForIme()
364 private void notifyImeVisibilityChanged(boolean imeVisible, int imeHeight) { in notifyImeVisibilityChanged() argument
367 mPinnedTaskListener.onImeVisibilityChanged(imeVisible, imeHeight); in notifyImeVisibilityChanged()
DDisplayContent.java3397 final int imeHeight = getInputMethodWindowVisibleHeight(); in adjustForImeIfNeeded() local
3398 mPinnedTaskController.setAdjustedForIme(imeVisible, imeHeight); in adjustForImeIfNeeded()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/pip/
DPipBoundsAlgorithmTest.java187 final int imeHeight = 30; in getDefaultBounds_imeShowing_offsetByImeHeight() local
191 mPipBoundsState.setImeVisibility(true, imeHeight); in getDefaultBounds_imeShowing_offsetByImeHeight()
194 assertEquals(imeHeight, defaultBounds.top - defaultBoundsWithIme.top); in getDefaultBounds_imeShowing_offsetByImeHeight()
211 final int imeHeight = 30; in getDefaultBounds_imeAndShelfShowing_offsetByTallest() local
217 mPipBoundsState.setImeVisibility(true, imeHeight); in getDefaultBounds_imeAndShelfShowing_offsetByTallest()
403 final int imeHeight = 100; in onImeVisibilityChanged_offsetBounds() local
407 mPipBoundsState.setImeVisibility(true, imeHeight); in onImeVisibilityChanged_offsetBounds()
410 oldPosition.offset(0, -imeHeight); in onImeVisibilityChanged_offsetBounds()
/frameworks/base/core/java/android/view/
DImeBackAnimationController.java153 float imeHeight = shownY - hiddenY; in setPreCommitProgress() local
155 int newY = (int) (imeHeight - interpolatedProgress * (imeHeight * PEEK_FRACTION)); in setPreCommitProgress()
DIPinnedTaskListener.aidl44 void onImeVisibilityChanged(boolean imeVisible, int imeHeight); in onImeVisibilityChanged() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/
DMenuViewAppearance.java161 final int imeHeight = (int) (draggableBounds.bottom - mImeTop); in getMenuDraggableBoundsWith() local
162 draggableBounds.bottom -= (imeHeight + mImeShiftingSpace); in getMenuDraggableBoundsWith()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/tv/
DTvPipController.java663 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in registerWmShellPinnedStackListener()
666 TAG, imeVisible, imeHeight); in registerWmShellPinnedStackListener()
669 && (!imeVisible || imeHeight == mTvPipBoundsState.getImeHeight())) { in registerWmShellPinnedStackListener()
674 mTvPipBoundsState.setImeVisibility(imeVisible, imeHeight); in registerWmShellPinnedStackListener()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/pip/
DPipBoundsState.java389 public void setImeVisibility(boolean imeShowing, int imeHeight) { in setImeVisibility() argument
391 mImeHeight = imeHeight; in setImeVisibility()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubblePositioner.java794 final int imeHeight = getImeHeight(); in getAllowableStackPositionRegion() local
801 allowableRegion.bottom -= imeHeight + bottomPadding + mBubbleSize; in getAllowableStackPositionRegion()
DBubbleController.java2374 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument
2375 mBubblePositioner.setImeVisible(imeVisible, imeHeight); in onImeVisibilityChanged()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/
DPipController.java356 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument
357 mPipBoundsState.setImeVisibility(imeVisible, imeHeight); in onImeVisibilityChanged()
358 mTouchHandler.onImeVisibilityChanged(imeVisible, imeHeight); in onImeVisibilityChanged()
DPipTouchHandler.java347 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument
349 mImeHeight = imeHeight; in onImeVisibilityChanged()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip2/phone/
DPipTouchHandler.java356 void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument
358 mImeHeight = imeHeight; in onImeVisibilityChanged()