OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:anchorView
(Results
1 - 11
of
11
) sorted by null
/packages/apps/Settings/src/com/android/settings/
DateTimeSettingsSetupWizard.java
282
View
anchorView
= findViewById(anchorViewId);
283
if (
anchorView
== null) {
288
mTimeZonePopup.setWidth(
anchorView
.getWidth());
289
mTimeZonePopup.setAnchorView(
anchorView
);
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/
AutofillPopupTest.java
104
View
anchorView
= view.findViewById(R.id.autofill_popup_window);
106
assertTrue(
anchorView
.getTag() instanceof AutofillPopup);
107
final AutofillPopup popup = (AutofillPopup)
anchorView
.getTag();
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/
RgbPlayerActivity.java
159
View
anchorView
= this.getParent() instanceof View ?
161
mMediaController.setAnchorView(
anchorView
);
VideoDumpView.java
206
View
anchorView
= this.getParent() instanceof View ?
208
mMediaController.setAnchorView(
anchorView
);
/cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java
336
View
anchorView
= mActivity.findViewById(R.id.anchor_upper);
337
int avaliable = getDisplay().getHeight() -
anchorView
.getHeight();
338
int maxAvailableHeight = mPopupWindow.getMaxAvailableHeight(
anchorView
);
341
int maxAvailableHeightWithOffset = mPopupWindow.getMaxAvailableHeight(
anchorView
, 2);
344
mPopupWindow.getMaxAvailableHeight(
anchorView
, maxAvailableHeight);
348
mPopupWindow.getMaxAvailableHeight(
anchorView
, maxAvailableHeight / 2 - 1);
351
maxAvailableHeightWithOffset = mPopupWindow.getMaxAvailableHeight(
anchorView
, -1);
355
anchorView
= mActivity.findViewById(R.id.anchor_lower);
356
avaliable = getDisplay().getHeight() -
anchorView
.getHeight();
357
maxAvailableHeight = mPopupWindow.getMaxAvailableHeight(
anchorView
);
[
all
...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentVideoView.java
622
View
anchorView
= new View(getContext());
623
addView(
anchorView
);
624
return
anchorView
;
633
public void releaseAnchorView(View
anchorView
) {
634
removeView(
anchorView
);
/frameworks/base/core/java/android/widget/
ListPopupWindow.java
[
all
...]
VideoView.java
378
View
anchorView
= this.getParent() instanceof View ?
380
mMediaController.setAnchorView(
anchorView
);
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java
[
all
...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/appmenu/
AppMenu.java
196
* @param
anchorView
The anchor {@link View} of the {@link ListPopupWindow}.
205
void show(Context context, View
anchorView
, boolean showIconRow,
210
mPopup.setAnchorView(
anchorView
);
695
View
anchorView
= mPopup.getAnchorView();
697
anchorView
.getLocationOnScreen(anchorViewLocation);
701
appDimensions.height() - anchorViewLocation[1] -
anchorView
.getHeight());
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailFragment.java
[
all
...]
Completed in 1118 milliseconds