Searched defs:getMaxAvailableHeight (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DListPopupWindow.java91 "getMaxAvailableHeight", View.class, int.class, boolean.class);
93 Log.i(TAG, "Could not find method getMaxAvailableHeight(View, int, boolean)"
1253 // getMaxAvailableHeight() subtracts the padding, so we put it back
1274 final int maxHeight = getMaxAvailableHeight(getAnchorView(), mDropDownVerticalOffset,
1420 private int getMaxAvailableHeight(View anchor, int yOffset, boolean ignoreBottomDecorations) { method in class:ListPopupWindow
1430 return mPopup.getMaxAvailableHeight(anchor, yOffset);
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java1794 public int getMaxAvailableHeight(@NonNull View anchor) { method in class:PopupWindow
1795 return getMaxAvailableHeight(anchor, 0);
1809 public int getMaxAvailableHeight(@NonNull View anchor, int yOffset) { method in class:PopupWindow
1810 return getMaxAvailableHeight(anchor, yOffset, false);
1828 public int getMaxAvailableHeight( method in class:PopupWindow

Completed in 593 milliseconds