Home
last modified time | relevance | path

Searched refs:appsView (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Launcher3/quickstep/tests/multivalentTests/src/com/android/launcher3/taskbar/allapps/
DTaskbarAllAppsControllerTest.kt79 assertThat(overlayContext.appsView.appsStore.apps).isEqualTo(TEST_APPS) in testSetApps_beforeOpened_cachesInfo()
89 assertThat(overlayContext.appsView.appsStore.apps).isEqualTo(TEST_APPS) in testSetApps_afterOpened_updatesStore()
101 .appsView in testSetPredictedApps_beforeOpened_cachesInfo()
117 .appsView in testSetPredictedApps_afterOpened_cachesInfo()
140 .appsView in testUpdateNotificationDots_appInfo_hasDot()
162 .appsView in testUpdateNotificationDots_predictedApp_hasDot()
/packages/apps/Launcher3/src/com/android/launcher3/recyclerview/
DAllAppsRecyclerViewPool.kt50 val appsView = context.appsView ?: return in <lambda>() constant
51 val activeRv: RecyclerView = appsView.activeRecyclerView ?: return in <lambda>()
75 context.appsView.layoutInflater.cloneInContext(allAppsPreInflationContext), in <lambda>()
/packages/apps/Launcher3/src/com/android/launcher3/
DModelCallbacks.kt101 launcher.appsView.appsStore.enableDeferUpdates(AllAppsStore.DEFER_UPDATES_NEXT_DRAW) in <lambda>()
103 launcher.appsView.appsStore.disableDeferUpdates( in <lambda>()
170 launcher.appsView.appsStore.disableDeferUpdatesSilently( in <lambda>()
194 val hadWorkApps = launcher.appsView.shouldShowTabs() in <lambda>()
195 launcher.appsView.appsStore.setApps(apps, flags, packageUserKeytoUidMap) in <lambda>()
198 hadWorkApps != launcher.appsView.shouldShowTabs() && in <lambda>()
214 launcher.appsView.appsStore.updateProgressBar(app) in <lambda>()
427 launcher.appsView.updateWorkUI() in <lambda>()
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DAllAppsRecyclerView.java325 ActivityAllAppsContainerView<?> appsView = context.getAppsView(); in logCumulativeVerticalScroll() local
326 ExtendedEditText editText = appsView.getSearchUiManager().getEditText(); in logCumulativeVerticalScroll()
337 } else if (appsView.isSearching()) { in logCumulativeVerticalScroll()
343 } else if (appsView.mViewPager != null) { in logCumulativeVerticalScroll()
344 int currentPage = appsView.mViewPager.getCurrentPage(); in logCumulativeVerticalScroll()
DAllAppsTransitionController.java430 public void setupViews(ScrimView scrimView, ActivityAllAppsContainerView<Launcher> appsView) { in setupViews() argument
432 mAppsView = appsView; in setupViews()
/packages/apps/Launcher3/src/com/android/launcher3/allapps/search/
DAllAppsSearchUiDelegate.java37 public AllAppsSearchUiDelegate(ActivityAllAppsContainerView<?> appsView) { in AllAppsSearchUiDelegate() argument
38 mAppsView = appsView; in AllAppsSearchUiDelegate()
DAppsSearchContainerLayout.java131 public void initializeSearch(ActivityAllAppsContainerView<?> appsView) { in initializeSearch() argument
132 mAppsView = appsView; in initializeSearch()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/
DQuickstepTransitionManager.java528 final View appsView = mLauncher.getAppsView(); in getLauncherContentAnimator() local
529 final float startAlpha = appsView.getAlpha(); in getLauncherContentAnimator()
530 final float startScale = SCALE_PROPERTY.get(appsView); in getLauncherContentAnimator()
535 appsView.setAlpha(alphas[0]); in getLauncherContentAnimator()
537 ObjectAnimator alpha = ObjectAnimator.ofFloat(appsView, View.ALPHA, alphas); in getLauncherContentAnimator()
540 appsView.setLayerType(View.LAYER_TYPE_HARDWARE, null); in getLauncherContentAnimator()
544 appsView.setLayerType(View.LAYER_TYPE_NONE, null); in getLauncherContentAnimator()
549 SCALE_PROPERTY.set(appsView, scales[0]); in getLauncherContentAnimator()
550 ObjectAnimator scale = ObjectAnimator.ofFloat(appsView, SCALE_PROPERTY, scales); in getLauncherContentAnimator()
559 appsView.setAlpha(startAlpha); in getLauncherContentAnimator()
[all …]