Searched defs:showAsDropDown (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DPopupWindowCompat.java66 public static void showAsDropDown(@NonNull PopupWindow popup, @NonNull View anchor, method in class:PopupWindowCompat
69 popup.showAsDropDown(anchor, xoff, yoff, gravity);
79 popup.showAsDropDown(anchor, xoff1, yoff);
/frameworks/base/core/java/android/view/autofill/
H A DAutofillPopupWindow.java232 showAsDropDown(actualAnchor, offsetX, offsetY);
263 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) { method in class:AutofillPopupWindow
265 Log.v(TAG, "showAsDropDown(): anchor=" + anchor + ", xoff=" + xoff + ", yoff=" + yoff
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java1218 public void showAsDropDown(View anchor) { method in class:PopupWindow
1219 showAsDropDown(anchor, 0, 0);
1239 public void showAsDropDown(View anchor, int xoff, int yoff) { method in class:PopupWindow
1240 showAsDropDown(anchor, xoff, yoff, DEFAULT_ANCHORED_GRAVITY);
1263 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) { method in class:PopupWindow
1315 * by this method is meaningful only after {@link #showAsDropDown(android.view.View)}
1316 * or {@link #showAsDropDown(android.view.View, int, int)} was invoked.
1874 * {@link #showAsDropDown(android.view.View)} has been executed. Failing
1877 * @see #showAsDropDown(android.view.View)
2252 // No need to register again if this is a DropDown, showAsDropDown alread
[all...]

Completed in 90 milliseconds