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

/frameworks/support/v4/java/android/support/v4/widget/
H A DPopupWindowCompat.java32 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, method in interface:PopupWindowCompat.PopupWindowImpl
41 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, method in class:PopupWindowCompat.BasePopupWindowImpl
43 popup.showAsDropDown(anchor, xoff, yoff);
52 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, method in class:PopupWindowCompat.KitKatPopupWindowImpl
54 PopupWindowCompatKitKat.showAsDropDown(popup, anchor, xoff, yoff, gravity);
91 public static void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, method in class:PopupWindowCompat
93 IMPL.showAsDropDown(popup, anchor, xoff, yoff, gravity);
/frameworks/support/v4/kitkat/android/support/v4/widget/
H A DPopupWindowCompatKitKat.java28 public static void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, method in class:PopupWindowCompatKitKat
30 popup.showAsDropDown(anchor, xoff, yoff, gravity);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAppCompatPopupWindow.java48 public void showAsDropDown(View anchor, int xoff, int yoff) { method in class:AppCompatPopupWindow
53 super.showAsDropDown(anchor, xoff, yoff);
58 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) { method in class:AppCompatPopupWindow
63 super.showAsDropDown(anchor, xoff, yoff, gravity);
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java947 public void showAsDropDown(View anchor) { method in class:PopupWindow
948 showAsDropDown(anchor, 0, 0);
967 public void showAsDropDown(View anchor, int xoff, int yoff) { method in class:PopupWindow
968 showAsDropDown(anchor, xoff, yoff, DEFAULT_ANCHORED_GRAVITY);
988 public void showAsDropDown(View anchor, int xoff, int yoff, int gravity) { method in class:PopupWindow
1038 * by this method is meaningful only after {@link #showAsDropDown(android.view.View)}
1039 * or {@link #showAsDropDown(android.view.View, int, int)} was invoked.
1393 * {@link #showAsDropDown(android.view.View)} has been executed. Failing that, calling
1396 * @see #showAsDropDown(android.view.View)
1609 // No need to register again if this is a DropDown, showAsDropDown alread
[all...]

Completed in 2894 milliseconds