OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:anchorView
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/android/widget/
VideoView.java
261
View
anchorView
= this.getParent() instanceof View ?
263
mMediaController.setAnchorView(
anchorView
);
/cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java
502
View
anchorView
= mActivity.findViewById(R.id.anchor_upper);
503
int avaliable = getDisplay().getHeight() -
anchorView
.getHeight();
504
int maxAvailableHeight = mPopupWindow.getMaxAvailableHeight(
anchorView
);
507
int maxAvailableHeightWithOffset = mPopupWindow.getMaxAvailableHeight(
anchorView
, 2);
510
mPopupWindow.getMaxAvailableHeight(
anchorView
, maxAvailableHeight);
514
mPopupWindow.getMaxAvailableHeight(
anchorView
, maxAvailableHeight / 2 - 1);
517
maxAvailableHeightWithOffset = mPopupWindow.getMaxAvailableHeight(
anchorView
, -1);
521
anchorView
= mActivity.findViewById(R.id.anchor_lower);
522
avaliable = getDisplay().getHeight() -
anchorView
.getHeight();
523
maxAvailableHeight = mPopupWindow.getMaxAvailableHeight(
anchorView
);
[
all
...]
Completed in 102 milliseconds