Home
last modified time | relevance | path

Searched refs:AbstractFloatingView (Results 1 – 25 of 66) sorted by relevance

123

/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/
DAbstractFloatingViewHelperTest.kt36 private val folderView: AbstractFloatingView = mock()
37 private val taskMenuView: AbstractFloatingView = mock()
48 (it.getArgument<Int>(0) and AbstractFloatingView.TYPE_FOLDER) != 0 in setup()
51 (it.getArgument<Int>(0) and AbstractFloatingView.TYPE_TASK_MENU) != 0 in setup()
60 AbstractFloatingView.TYPE_ALL in closeOpenViews_all()
74 AbstractFloatingView.TYPE_TASK_MENU in closeOpenViews_taskMenu()
88 AbstractFloatingView.TYPE_PIN_IME_POPUP in closeOpenViews_other()
102 AbstractFloatingView.TYPE_FOLDER or AbstractFloatingView.TYPE_TASK_MENU in closeOpenViews_both_animationOff()
/packages/apps/Launcher3/src/com/android/launcher3/
DAbstractFloatingView.java53 public abstract class AbstractFloatingView extends LinearLayout implements TouchController, class
146 public AbstractFloatingView(Context context, AttributeSet attrs) { in AbstractFloatingView() method in AbstractFloatingView
150 public AbstractFloatingView(Context context, AttributeSet attrs, int defStyleAttr) { in AbstractFloatingView() method in AbstractFloatingView
230 public static <T extends AbstractFloatingView> T getOpenView( in getOpenView()
246 public static <T extends AbstractFloatingView> T getAnyView( in getAnyView()
251 private static <T extends AbstractFloatingView> T getView( in getView()
259 if (child instanceof AbstractFloatingView) { in getView()
260 AbstractFloatingView view = (AbstractFloatingView) child; in getView()
271 AbstractFloatingView view = getOpenView(activity, type); in closeOpenContainer()
302 public static AbstractFloatingView getTopOpenView(ActivityContext activity) { in getTopOpenView()
[all …]
DModelCallbacks.kt59 AbstractFloatingView.closeOpenViews( in <lambda>()
62 AbstractFloatingView.TYPE_ALL and AbstractFloatingView.TYPE_REBIND_SAFE.inv() in <lambda>()
180 AbstractFloatingView.getOpenView<AbstractFloatingView>( in <lambda>()
182 AbstractFloatingView.TYPE_SNACKBAR in <lambda>()
DAbstractFloatingViewHelper.kt19 import com.android.launcher3.AbstractFloatingView.FloatingViewType
33 if (child is AbstractFloatingView && child.isOfType(type)) { in closeOpenViews()
DGestureNavContract.java21 import static com.android.launcher3.AbstractFloatingView.TYPE_ICON_SURFACE;
142 AbstractFloatingView.closeOpenViews(lastContext, false, TYPE_ICON_SURFACE); in handleMessage()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/
DNavBarToHomeTouchController.java19 import static com.android.launcher3.AbstractFloatingView.TYPE_ALL;
20 import static com.android.launcher3.AbstractFloatingView.TYPE_ALL_APPS_EDU;
38 import com.android.launcher3.AbstractFloatingView;
125 if (AbstractFloatingView.getTopOpenViewWithType(mLauncher, typeToClose) != null) { in canInterceptTouch()
155 AbstractFloatingView.closeOpenContainer(mLauncher, AbstractFloatingView.TYPE_TASK_MENU); in initCurrentAnimation()
163 AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(mLauncher); in initCurrentAnimation()
223 AbstractFloatingView topOpenView = AbstractFloatingView.getTopOpenView(mLauncher); in onDragEnd()
225 AbstractFloatingView.closeAllOpenViews(mLauncher); in onDragEnd()
DTwoButtonNavbarTouchController.java18 import static com.android.launcher3.AbstractFloatingView.TYPE_ALL_APPS_EDU;
19 import static com.android.launcher3.AbstractFloatingView.getOpenView;
29 import com.android.launcher3.AbstractFloatingView;
78 if (AbstractFloatingView.getTopOpenView(mLauncher) != null) { in canInterceptTouchInternal()
DStatusBarTouchController.java34 import com.android.launcher3.AbstractFloatingView;
165 AbstractFloatingView.getTopOpenViewWithType(mLauncher, in canInterceptTouch()
166 AbstractFloatingView.TYPE_STATUS_BAR_SWIPE_DOWN_DISALLOW) != null) { in canInterceptTouch()
/packages/apps/Launcher3/src/com/android/launcher3/views/
DBaseDragLayer.java40 import com.android.launcher3.AbstractFloatingView;
176 AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(mActivity); in findControllerToHandleTouch()
210 View topView = AbstractFloatingView.getTopOpenViewWithType(mActivity, in onRequestSendAccessibilityEvent()
211 AbstractFloatingView.TYPE_ACCESSIBLE); in onRequestSendAccessibilityEvent()
225 View topView = AbstractFloatingView.getTopOpenViewWithType(mActivity, in addChildrenForAccessibility()
226 AbstractFloatingView.TYPE_ACCESSIBLE); in addChildrenForAccessibility()
246 if (child instanceof AbstractFloatingView) { in onViewRemoved()
249 AbstractFloatingView floatingView = (AbstractFloatingView) child; in onViewRemoved()
461 View topView = AbstractFloatingView.getTopOpenView(mActivity); in onRequestFocusInDescendants()
471 View topView = AbstractFloatingView.getTopOpenView(mActivity); in addFocusables()
DListenerView.java24 import com.android.launcher3.AbstractFloatingView;
29 public class ListenerView extends AbstractFloatingView {
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/overlay/
DTaskbarOverlayController.java22 import static com.android.launcher3.AbstractFloatingView.TYPE_ALL;
23 import static com.android.launcher3.AbstractFloatingView.TYPE_REBIND_SAFE;
36 import com.android.launcher3.AbstractFloatingView;
145 if (AbstractFloatingView.hasOpenView(mOverlayContext, TYPE_ALL)) return false; in canCloseWindow()
167 AbstractFloatingView.closeAllOpenViewsExcept(c, false, TYPE_REBIND_SAFE); in updateLauncherDeviceProfile()
205 private class TaskbarOverlayProxyView extends AbstractFloatingView {
DTaskbarOverlayDragLayer.java34 import com.android.launcher3.AbstractFloatingView;
90 AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(mActivity); in dispatchKeyEvent()
99 AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(mActivity); in dispatchKeyEvent()
/packages/apps/Launcher3/quickstep/tests/multivalentTests/src/com/android/launcher3/taskbar/overlay/
DTaskbarOverlayControllerTest.kt23 import com.android.launcher3.AbstractFloatingView
24 import com.android.launcher3.AbstractFloatingView.TYPE_OPTIONS_POPUP
25 import com.android.launcher3.AbstractFloatingView.TYPE_TASKBAR_ALL_APPS
26 import com.android.launcher3.AbstractFloatingView.TYPE_TASKBAR_OVERLAY_PROXY
27 import com.android.launcher3.AbstractFloatingView.hasOpenView
90 AbstractFloatingView.closeOpenContainer(taskbarContext, TYPE_TASKBAR_OVERLAY_PROXY) in testRequestWindow_closeProxyView_closesOverlay()
230 ) : AbstractFloatingView(overlayContext, null) {
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
DTaskbarKeyguardController.java3 import static com.android.launcher3.AbstractFloatingView.TYPE_ALL;
15 import com.android.launcher3.AbstractFloatingView;
71 AbstractFloatingView.closeOpenViews(mContext, animateViewClosing, TYPE_ALL); in updateStateForSysuiFlags()
DTaskbarHoverToolTipController.java25 import static com.android.launcher3.AbstractFloatingView.TYPE_ALL_EXCEPT_ON_BOARD_POPUP;
39 import com.android.launcher3.AbstractFloatingView;
132 AbstractFloatingView.hasOpenView(mActivity, TYPE_ALL_EXCEPT_ON_BOARD_POPUP); in onHover()
DTaskbarDragLayer.java42 import com.android.launcher3.AbstractFloatingView;
278 AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(mActivity); in dispatchKeyEvent()
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DDiscoveryBounce.java29 import com.android.launcher3.AbstractFloatingView;
41 public class DiscoveryBounce extends AbstractFloatingView {
128 || AbstractFloatingView.getTopOpenView(launcher) != null in showForHomeIfNeeded()
/packages/apps/Launcher3/src/com/android/launcher3/popup/
DSystemShortcut.java24 import com.android.launcher3.AbstractFloatingView;
128 AbstractFloatingView.closeAllOpenViews(mTarget); in onClick()
266 AbstractFloatingView.closeAllOpenViews(mTarget); in onClick()
308 AbstractFloatingView.closeAllOpenViews(mTarget); in onClick()
383 AbstractFloatingView.TYPE_ALL & ~AbstractFloatingView.TYPE_REBIND_SAFE); in dismissTaskMenuView()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/allapps/
DTaskbarAllAppsViewController.java24 import com.android.launcher3.AbstractFloatingView;
103 AbstractFloatingView.closeOpenContainer( in setUpTaskbarStashing()
104 mContext, AbstractFloatingView.TYPE_ACTION_POPUP); in setUpTaskbarStashing()
/packages/apps/Launcher3/src/com/android/launcher3/util/
DKeyboardShortcutsDelegate.java29 import com.android.launcher3.AbstractFloatingView;
116 AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(mLauncher); in onKeyDown()
/packages/apps/Launcher3/src/com/android/launcher3/statemanager/
DStatefulContainer.java25 import com.android.launcher3.AbstractFloatingView;
68 AbstractFloatingView.closeAllOpenViews(this, !state.hasFlag(FLAG_NON_INTERACTIVE)); in onStateSetStart()
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
DShortcutMenuAccessibilityDelegate.java24 import com.android.launcher3.AbstractFloatingView;
69 AbstractFloatingView.closeAllOpenViews(mContext); in performAction()
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DDragLayer.java48 import com.android.launcher3.AbstractFloatingView;
145 AbstractFloatingView topView = AbstractFloatingView.getTopOpenView(mActivity); in onInterceptHoverEvent()
211 View topView = AbstractFloatingView.getTopOpenViewWithType(mActivity, in addChildrenForAccessibility()
212 AbstractFloatingView.TYPE_ACCESSIBLE); in addChildrenForAccessibility()
DLauncherDragController.java18 import static com.android.launcher3.AbstractFloatingView.TYPE_DISCOVERY_BOUNCE;
33 import com.android.launcher3.AbstractFloatingView;
73 AbstractFloatingView.closeOpenViews(mActivity, false, TYPE_DISCOVERY_BOUNCE); in startDrag()
/packages/apps/Launcher3/quickstep/tests/src/com/android/quickstep/
DDesktopSystemShortcutTest.kt25 import com.android.launcher3.AbstractFloatingView
171 AbstractFloatingView.TYPE_ALL and AbstractFloatingView.TYPE_REBIND_SAFE.inv() in desktopSystemShortcutClicked()

123