HomeSort by relevance Sort by last modified time
    Searched defs:layerViews (Results 1 - 2 of 2) sorted by null

  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherStateTransitionAnimation.java 222 final HashMap<View, Integer> layerViews = new HashMap<>();
233 animated, overlaySearchBarView != null /* hasOverlaySearchBar */, layerViews);
276 layerViews.put(revealView, BUILD_AND_SET_LAYER);
284 layerViews.put(overlaySearchBarView, BUILD_AND_SET_LAYER);
292 layerViews.put(contentView, BUILD_AND_SET_LAYER);
332 for (View v : layerViews.keySet()) {
333 if (layerViews.get(v) == BUILD_AND_SET_LAYER) {
371 for (View v : layerViews.keySet()) {
372 if (layerViews.get(v) == BUILD_AND_SET_LAYER) {
503 final HashMap<View, Integer> layerViews = new HashMap<>()
    [all...]
WorkspaceStateTransitionAnimation.java 221 HashMap<View, Integer> layerViews) {
227 animateWorkspace(states, toPage, animated, duration, layerViews,
229 animateSearchBar(states, animated, duration, hasOverlaySearchBar, layerViews,
269 final int duration, final HashMap<View, Integer> layerViews,
369 if (layerViews != null) {
370 layerViews.put(cl, LauncherStateTransitionAnimation.BUILD_LAYER);
415 if (layerViews != null) {
416 // If layerViews is not null, we add these views, and indicate that
418 layerViews.put(hotseat, LauncherStateTransitionAnimation.BUILD_AND_SET_LAYER);
419 layerViews.put(overviewPanel, LauncherStateTransitionAnimation.BUILD_AND_SET_LAYER)
    [all...]

Completed in 71 milliseconds