/sdk/templates/activities/FullscreenActivity/root/src/app_package/util/ |
SystemUiHiderBase.java.ftl | 22 protected SystemUiHiderBase(Activity activity, View anchorView, int flags) { 23 super(activity, anchorView, flags);
|
SystemUiHider.java.ftl | 88 * @param anchorView The view on which 94 public static SystemUiHider getInstance(Activity activity, View anchorView, int flags) { 96 return new SystemUiHiderHoneycomb(activity, anchorView, flags); 98 return new SystemUiHiderBase(activity, anchorView, flags); 102 protected SystemUiHider(Activity activity, View anchorView, int flags) { 104 mAnchorView = anchorView;
|
SystemUiHiderHoneycomb.java.ftl | 45 protected SystemUiHiderHoneycomb(Activity activity, View anchorView, int flags) { 46 super(activity, anchorView, flags);
|
/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...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/ |
RecentsCallback.java | 29 void handleLongPress(View selectedView, View anchorView, View thumbnailView);
|
RecentsHorizontalScrollView.java | 140 final View anchorView = view.findViewById(R.id.app_description); 141 mCallback.handleLongPress(view, anchorView, thumbnailView);
|
RecentsVerticalScrollView.java | 144 final View anchorView = view.findViewById(R.id.app_description); 145 mCallback.handleLongPress(view, anchorView, thumbnailView);
|
RecentsPanelView.java | 732 final View selectedView, final View anchorView, final View thumbnailView) { 735 new PopupMenu(mContext, anchorView == null ? selectedView : anchorView);
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
MenuPopupHelper.java | 71 public MenuPopupHelper(Context context, MenuBuilder menu, View anchorView) { 72 this(context, menu, anchorView, false); 76 View anchorView, boolean overflowOnly) { 86 mAnchorView = anchorView;
|
ActionMenuPresenter.java | 595 public OverflowPopup(Context context, MenuBuilder menu, View anchorView, 597 super(context, menu, anchorView, overflowOnly);
|
/frameworks/base/core/java/android/webkit/ |
AutoCompletePopup.java | 35 private static class AnchorView extends View { 36 AnchorView(Context context) { 241 mAnchor = new AnchorView(mWebView.getContext());
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
PhotoActionPopup.java | 73 public static ListPopupWindow createPopupMenu(Context context, View anchorView, 126 listPopupWindow.setAnchorView(anchorView); 133 if (anchorView.getWidth() < minWidth) {
|
ContactEditorFragment.java | [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
DragLayer.java | 450 final Runnable onFinishAnimationRunnable, View anchorView) { 504 onCompleteRunnable, ANIMATION_END_DISAPPEAR, duration, anchorView); 510 int animationEndStyle, int duration, View anchorView) { 515 null, null, onCompleteRunnable, animationEndStyle, anchorView); 535 * @param anchorView If not null, this represents the view which the animated view stays 543 final Runnable onCompleteRunnable, final int animationEndStyle, View anchorView) { 605 anchorView); 610 final int animationEndStyle, View anchorView) { 621 if (anchorView != null) { 622 mAnchorViewInitialScrollX = anchorView.getScrollX() [all...] |
/packages/apps/Settings/src/com/android/settings/ |
DateTimeSettingsSetupWizard.java | 283 View anchorView = findViewById(anchorViewId); 284 if (anchorView == null) { 289 mTimeZonePopup.setWidth(anchorView.getWidth()); 290 mTimeZonePopup.setAnchorView(anchorView);
|
/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);
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
PopupList.java | 69 public PopupList(Context context, View anchorView) { 71 mAnchorView = anchorView;
|
/frameworks/base/core/java/android/widget/ |
VideoView.java | 273 View anchorView = this.getParent() instanceof View ? 275 mMediaController.setAnchorView(anchorView);
|
ListPopupWindow.java | [all...] |
/packages/apps/Contacts/src/com/android/contacts/detail/ |
ContactDetailFragment.java | [all...] |
/packages/apps/Contacts/src/com/android/contacts/dialpad/ |
DialpadFragment.java | [all...] |
/packages/apps/Phone/src/com/android/phone/ |
InCallTouchUi.java | [all...] |