Searched refs:popupWindow (Results 1 – 7 of 7) sorted by relevance
/frameworks/support/v4/java/android/support/v4/widget/ |
D | PopupWindowCompat.java | 33 void setOverlapAnchor(PopupWindow popupWindow, boolean overlapAnchor); in setOverlapAnchor() argument 34 boolean getOverlapAnchor(PopupWindow popupWindow); in getOverlapAnchor() argument 35 void setWindowLayoutType(PopupWindow popupWindow, int layoutType); in setWindowLayoutType() argument 36 int getWindowLayoutType(PopupWindow popupWindow); in getWindowLayoutType() argument 50 public void setOverlapAnchor(PopupWindow popupWindow, boolean overlapAnchor) { in setOverlapAnchor() argument 55 public boolean getOverlapAnchor(PopupWindow popupWindow) { in getOverlapAnchor() argument 60 public void setWindowLayoutType(PopupWindow popupWindow, int layoutType) { in setWindowLayoutType() argument 65 public int getWindowLayoutType(PopupWindow popupWindow) { in getWindowLayoutType() argument 75 public void setWindowLayoutType(PopupWindow popupWindow, int layoutType) { in setWindowLayoutType() argument 76 PopupWindowCompatGingerbread.setWindowLayoutType(popupWindow, layoutType); in setWindowLayoutType() [all …]
|
/frameworks/support/v4/api23/android/support/v4/widget/ |
D | PopupWindowCompatApi23.java | 23 static void setOverlapAnchor(PopupWindow popupWindow, boolean overlapAnchor) { in setOverlapAnchor() argument 24 popupWindow.setOverlapAnchor(overlapAnchor); in setOverlapAnchor() 27 static boolean getOverlapAnchor(PopupWindow popupWindow) { in getOverlapAnchor() argument 28 return popupWindow.getOverlapAnchor(); in getOverlapAnchor() 31 static void setWindowLayoutType(PopupWindow popupWindow, int layoutType) { in setWindowLayoutType() argument 32 popupWindow.setWindowLayoutType(layoutType); in setWindowLayoutType() 35 static int getWindowLayoutType(PopupWindow popupWindow) { in getWindowLayoutType() argument 36 return popupWindow.getWindowLayoutType(); in getWindowLayoutType()
|
/frameworks/support/v4/gingerbread/android/support/v4/widget/ |
D | PopupWindowCompatGingerbread.java | 33 static void setWindowLayoutType(PopupWindow popupWindow, int layoutType) { in setWindowLayoutType() argument 47 sSetWindowLayoutTypeMethod.invoke(popupWindow, layoutType); in setWindowLayoutType() 54 static int getWindowLayoutType(PopupWindow popupWindow) { in getWindowLayoutType() argument 68 return (Integer) sGetWindowLayoutTypeMethod.invoke(popupWindow); in getWindowLayoutType()
|
/frameworks/support/v4/api21/android/support/v4/widget/ |
D | PopupWindowCompatApi21.java | 39 static void setOverlapAnchor(PopupWindow popupWindow, boolean overlapAnchor) { in setOverlapAnchor() argument 42 sOverlapAnchorField.set(popupWindow, overlapAnchor); in setOverlapAnchor() 49 static boolean getOverlapAnchor(PopupWindow popupWindow) { in getOverlapAnchor() argument 52 return (Boolean) sOverlapAnchorField.get(popupWindow); in getOverlapAnchor()
|
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/ |
D | ActivityChooserView.java | 368 ListPopupWindow popupWindow = getListPopupWindow(); in showPopupUnchecked() local 369 if (!popupWindow.isShowing()) { in showPopupUnchecked() 376 popupWindow.setContentWidth(contentWidth); in showPopupUnchecked() 377 popupWindow.show(); in showPopupUnchecked() 381 popupWindow.getListView().setContentDescription(getContext().getString( in showPopupUnchecked()
|
/frameworks/base/core/java/android/widget/ |
D | ActivityChooserView.java | 391 ListPopupWindow popupWindow = getListPopupWindow(); in showPopupUnchecked() local 392 if (!popupWindow.isShowing()) { in showPopupUnchecked() 399 popupWindow.setContentWidth(contentWidth); in showPopupUnchecked() 400 popupWindow.show(); in showPopupUnchecked() 404 popupWindow.getListView().setContentDescription(mContext.getString( in showPopupUnchecked()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | FloatingToolbar.java | 1469 PopupWindow popupWindow = new PopupWindow(popupContentHolder); in createPopupWindow() local 1472 popupWindow.setClippingEnabled(false); in createPopupWindow() 1473 popupWindow.setWindowLayoutType( in createPopupWindow() 1475 popupWindow.setAnimationStyle(0); in createPopupWindow() 1476 popupWindow.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT)); in createPopupWindow() 1480 return popupWindow; in createPopupWindow()
|