Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/
DPinnedStackListenerForwarder.java69 private void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument
71 listener.onImeVisibilityChanged(imeVisible, imeHeight); in onImeVisibilityChanged()
103 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument
105 PinnedStackListenerForwarder.this.onImeVisibilityChanged(imeVisible, imeHeight); in onImeVisibilityChanged()
138 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) {} in onImeVisibilityChanged() argument
DPipBoundsState.java331 public void setImeVisibility(boolean imeShowing, int imeHeight) { in setImeVisibility() argument
333 mImeHeight = imeHeight; in setImeVisibility()
/frameworks/base/services/core/java/com/android/server/wm/
DPinnedTaskController.java347 void setAdjustedForIme(boolean adjustedForIme, int imeHeight) { in setAdjustedForIme() argument
352 final boolean imeShowing = adjustedForIme && imeHeight > 0; in setAdjustedForIme()
353 imeHeight = imeShowing ? imeHeight : 0; in setAdjustedForIme()
354 if (imeShowing == mIsImeShowing && imeHeight == mImeHeight) { in setAdjustedForIme()
359 mImeHeight = imeHeight; in setAdjustedForIme()
360 notifyImeVisibilityChanged(imeShowing, imeHeight); in setAdjustedForIme()
396 private void notifyImeVisibilityChanged(boolean imeVisible, int imeHeight) { in notifyImeVisibilityChanged() argument
399 mPinnedTaskListener.onImeVisibilityChanged(imeVisible, imeHeight); in notifyImeVisibilityChanged()
DDisplayContent.java3043 final int imeHeight = getInputMethodWindowVisibleHeight(); in adjustForImeIfNeeded() local
3044 mPinnedTaskController.setAdjustedForIme(imeVisible, imeHeight); in adjustForImeIfNeeded()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/pip/
DPipBoundsAlgorithmTest.java168 final int imeHeight = 30; in getDefaultBounds_imeShowing_offsetByImeHeight() local
172 mPipBoundsState.setImeVisibility(true, imeHeight); in getDefaultBounds_imeShowing_offsetByImeHeight()
175 assertEquals(imeHeight, defaultBounds.top - defaultBoundsWithIme.top); in getDefaultBounds_imeShowing_offsetByImeHeight()
192 final int imeHeight = 30; in getDefaultBounds_imeAndShelfShowing_offsetByTallest() local
198 mPipBoundsState.setImeVisibility(true, imeHeight); in getDefaultBounds_imeAndShelfShowing_offsetByTallest()
382 final int imeHeight = 100; in onImeVisibilityChanged_offsetBounds() local
386 mPipBoundsState.setImeVisibility(true, imeHeight); in onImeVisibilityChanged_offsetBounds()
389 oldPosition.offset(0, -imeHeight); in onImeVisibilityChanged_offsetBounds()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/tv/
DTvPipController.java382 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in registerWmShellPinnedStackListener()
385 + ", height=" + imeHeight); in registerWmShellPinnedStackListener()
389 && (!imeVisible || imeHeight == mPipBoundsState.getImeHeight())) { in registerWmShellPinnedStackListener()
394 mPipBoundsState.setImeVisibility(imeVisible, imeHeight); in registerWmShellPinnedStackListener()
/frameworks/base/core/java/android/view/
DIPinnedTaskListener.aidl44 void onImeVisibilityChanged(boolean imeVisible, int imeHeight); in onImeVisibilityChanged() argument
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/
DPipController.java210 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument
211 mPipBoundsState.setImeVisibility(imeVisible, imeHeight); in onImeVisibilityChanged()
212 mTouchHandler.onImeVisibilityChanged(imeVisible, imeHeight); in onImeVisibilityChanged()
DPipTouchHandler.java325 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument
327 mImeHeight = imeHeight; in onImeVisibilityChanged()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/animation/
DStackAnimationController.java528 public void setImeHeight(int imeHeight) {
529 mImeHeight = imeHeight;
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleController.java1368 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { in onImeVisibilityChanged() argument
1370 mStackView.onImeVisibilityChanged(imeVisible, imeHeight); in onImeVisibilityChanged()