Searched defs:popup (Results 1 - 5 of 5) 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, argument
41 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, argument
43 popup.showAsDropDown(anchor, xoff, yoff);
52 public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, argument
54 PopupWindowCompatKitKat.showAsDropDown(popup, anchor, xoff, yoff, gravity);
76 * <p>Display the content view in a popup window anchored to the bottom-left
79 * the popup in its entirety, this method tries to find a parent scroll
81 * corner of the popup is pinned at the top left corner of the anchor view.</p>
83 * location, the popup will be moved correspondingly.</p>
85 * @param popup th
91 showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, int gravity) argument
[all...]
/frameworks/support/v4/kitkat/android/support/v4/widget/
H A DPopupWindowCompatKitKat.java28 public static void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff, argument
30 popup.showAsDropDown(anchor, xoff, yoff, gravity);
/frameworks/base/core/java/android/widget/
H A DActionMenuPresenter.java304 OverflowPopup popup = new OverflowPopup(mContext, mMenu, mOverflowButton, true);
305 mPostedOpenRunnable = new OpenOverflowRunnable(popup);
330 MenuPopupHelper popup = mOverflowPopup;
331 if (popup != null) {
332 popup.dismiss();
339 * Dismiss all popup menus - overflow and submenus.
614 // Displaying the popup occurs asynchronously, so wait for
756 public OpenOverflowRunnable(OverflowPopup popup) { argument
757 mPopup = popup;
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionMenuPresenter.java303 OverflowPopup popup = new OverflowPopup(mContext, mMenu, mOverflowButton, true);
304 mPostedOpenRunnable = new OpenOverflowRunnable(popup);
329 MenuPopupHelper popup = mOverflowPopup;
330 if (popup != null) {
331 popup.dismiss();
338 * Dismiss all popup menus - overflow and submenus.
613 // Displaying the popup occurs asynchronously, so wait for
745 public OpenOverflowRunnable(OverflowPopup popup) { argument
746 mPopup = popup;
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java1331 * Create a chip from the default selection. If the popup is showing, the
1332 * default is the selected item (if one is selected), or the first item, in the popup
1667 // Align the alternates popup with the left side of the View,
2146 * and a popup window with the address in use highlighted and any other
2211 private void showAddress(final DrawableRecipientChip currentChip, final ListPopupWindow popup) { argument
2217 // Align the alternates popup with the left side of the View,
2219 popup.setAnchorView((mAlternatePopupAnchor != null) ? mAlternatePopupAnchor : this);
2220 popup.setVerticalOffset(bottomOffset);
2221 popup.setAdapter(createSingleAddressAdapter(currentChip));
2222 popup
[all...]

Completed in 797 milliseconds