Home
last modified time | relevance | path

Searched refs:anchorView (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/java/com/android/internal/view/
DTooltipPopup.java63 public void show(View anchorView, int anchorX, int anchorY, boolean fromTouch, in show() argument
71 computePosition(anchorView, anchorX, anchorY, fromTouch, mLayoutParams); in show()
94 private void computePosition(View anchorView, int anchorX, int anchorY, boolean fromTouch, in computePosition() argument
96 outParams.token = anchorView.getApplicationWindowToken(); in computePosition()
102 if (anchorView.getWidth() >= tooltipPreciseAnchorThreshold) { in computePosition()
107 offsetX = anchorView.getWidth() / 2; // Center on the view horizontally. in computePosition()
112 if (anchorView.getHeight() >= tooltipPreciseAnchorThreshold) { in computePosition()
120 offsetBelow = anchorView.getHeight(); // Place below the view in most cases. in computePosition()
132 anchorView.getApplicationWindowToken()); in computePosition()
140 anchorView.getLocationOnScreen(mTmpAnchorPos); in computePosition()
/frameworks/base/packages/SettingsLib/ActionBarShadow/src/com/android/settingslib/widget/
DActionBarShadowController.java59 View anchorView, Lifecycle lifecycle, View scrollView) { in attachToView() argument
60 return new ActionBarShadowController(anchorView, lifecycle, scrollView); in attachToView()
70 private ActionBarShadowController(View anchorView, Lifecycle lifecycle, View scrollView) { in ActionBarShadowController() argument
71 mScrollChangeWatcher = new ActionBarShadowController.ScrollChangeWatcher(anchorView); in ActionBarShadowController()
105 ScrollChangeWatcher(View anchorView) { in ScrollChangeWatcher() argument
106 mAnchorView = anchorView; in ScrollChangeWatcher()
/frameworks/base/core/java/com/android/internal/view/menu/
DMenuPopupHelper.java66 @NonNull View anchorView) { in MenuPopupHelper() argument
67 this(context, menu, anchorView, false, com.android.internal.R.attr.popupMenuStyle, 0); in MenuPopupHelper()
71 @NonNull View anchorView, in MenuPopupHelper() argument
73 this(context, menu, anchorView, overflowOnly, popupStyleAttr, 0); in MenuPopupHelper()
77 @NonNull View anchorView, boolean overflowOnly, @AttrRes int popupStyleAttr, in MenuPopupHelper() argument
81 mAnchorView = anchorView; in MenuPopupHelper()
DStandardMenuPopup.java114 public StandardMenuPopup(Context context, MenuBuilder menu, View anchorView, int popupStyleAttr, in StandardMenuPopup() argument
128 mAnchorView = anchorView; in StandardMenuPopup()
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
DRgbPlayerActivity.java159 View anchorView = this.getParent() instanceof View ? in attachMediaController() local
161 mMediaController.setAnchorView(anchorView); in attachMediaController()
DVideoDumpView.java206 View anchorView = this.getParent() instanceof View ? in attachMediaController() local
208 mMediaController.setAnchorView(anchorView); in attachMediaController()
/frameworks/base/core/java/android/widget/
DActionMenuPresenter.java937 public OverflowPopup(Context context, MenuBuilder menu, View anchorView, in OverflowPopup() argument
939 super(context, menu, anchorView, overflowOnly, in OverflowPopup()
957 public ActionButtonSubmenu(Context context, SubMenuBuilder subMenu, View anchorView) { in ActionButtonSubmenu() argument
958 super(context, subMenu, anchorView, false, in ActionButtonSubmenu()
DListPopupWindow.java1060 final View anchorView = mDropDownAnchorView; in onKeyPreIme() local
1062 KeyEvent.DispatcherState state = anchorView.getKeyDispatcherState(); in onKeyPreIme()
1068 KeyEvent.DispatcherState state = anchorView.getKeyDispatcherState(); in onKeyPreIme()
DVideoView.java459 View anchorView = this.getParent() instanceof View ? in attachMediaController() local
461 mMediaController.setAnchorView(anchorView); in attachMediaController()