Home
last modified time | relevance | path

Searched refs:topView (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/views/
DBaseDragLayer.java176 AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(mActivity); in findControllerToHandleTouch() local
177 if (topView != null && topView.onControllerInterceptTouchEvent(ev)) { in findControllerToHandleTouch()
178 return topView; in findControllerToHandleTouch()
202 View topView = AbstractFloatingView.getTopOpenViewWithType(mActivity, in onRequestSendAccessibilityEvent() local
204 if (topView != null) { in onRequestSendAccessibilityEvent()
205 if (child == topView) { in onRequestSendAccessibilityEvent()
217 View topView = AbstractFloatingView.getTopOpenViewWithType(mActivity, in addChildrenForAccessibility() local
219 if (topView != null) { in addChildrenForAccessibility()
221 addAccessibleChildToList(topView, childrenForAccessibility); in addChildrenForAccessibility()
436 View topView = AbstractFloatingView.getTopOpenView(mActivity); in onRequestFocusInDescendants() local
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DDragLayer.java145 AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(mActivity); in onInterceptHoverEvent() local
146 if (!(topView instanceof Folder)) { in onInterceptHoverEvent()
152 Folder currentFolder = (Folder) topView; in onInterceptHoverEvent()
157 isOverFolderOrSearchBar = isEventOverView(topView, ev) || in onInterceptHoverEvent()
167 isOverFolderOrSearchBar = isEventOverView(topView, ev) || in onInterceptHoverEvent()
211 View topView = AbstractFloatingView.getTopOpenViewWithType(mActivity, in addChildrenForAccessibility() local
213 if (topView != null) { in addChildrenForAccessibility()
214 addAccessibleChildToList(topView, childrenForAccessibility); in addChildrenForAccessibility()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/touchcontrollers/
DNavBarToHomeTouchController.java159 AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(mLauncher); in initCurrentAnimation() local
160 if (topView != null) { in initCurrentAnimation()
161 Animator hintCloseAnim = topView.createHintCloseAnim(mPullbackDistance); in initCurrentAnimation()
/packages/apps/PermissionController/src/android/support/wearable/view/
DWearableListView.java1050 final View topView = getChildAt(0); in scrollVerticallyBy() local
1052 final int hangingTop = Math.max(-topView.getTop(), 0); in scrollVerticallyBy()
1061 final int bottom = topView.getTop(); in scrollVerticallyBy()
1071 final int scrollBy = Math.min(-dy + scrolled, maxScroll - topView.getTop()); in scrollVerticallyBy()
/packages/apps/Launcher3/src/com/android/launcher3/
DLauncher.java1774 AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(this); in onBackPressed() local
1775 if (topView != null && topView.onBackPressed()) { in onBackPressed()