Searched refs:animated (Results 1 - 11 of 11) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
H A DAppsCustomizeTabHost.java163 public void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace) { argument
164 mPagedView.onLauncherTransitionPrepare(l, animated, toWorkspace);
182 public void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace) { argument
183 mPagedView.onLauncherTransitionStart(l, animated, toWorkspace);
192 public void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace) { argument
193 mPagedView.onLauncherTransitionEnd(l, animated, toWorkspace);
H A DSearchDropTargetBar.java140 public void showSearchBar(boolean animated) { argument
141 boolean needToCancelOngoingAnimation = mQSBSearchBarAnim.isRunning() && !animated;
143 if (animated) {
156 public void hideSearchBar(boolean animated) { argument
157 boolean needToCancelOngoingAnimation = mQSBSearchBarAnim.isRunning() && !animated;
159 if (animated) {
H A DLauncher.java950 // The animated view may be null in the case of a rotation during widget configuration
2979 * is animated relative to the specified View. If the View is null, no animation
3128 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) { argument
3130 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
3134 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) { argument
3136 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
3149 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) { argument
3151 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
3203 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) { argument
3205 showAppsCustomizeHelper(animated, springLoade
3208 showAppsCustomizeHelper(final boolean animated, final boolean springLoaded, final AppsCustomizePagedView.ContentType contentType) argument
3444 hideAppsCustomizeHelper(Workspace.State toState, final boolean animated, final boolean springLoaded, final Runnable onCompleteRunnable) argument
3710 showWorkspace(boolean animated) argument
3718 showWorkspace(boolean animated, Runnable onCompleteRunnable) argument
3750 showOverviewMode(boolean animated) argument
3757 onWorkspaceShown(boolean animated) argument
3760 showAllApps(boolean animated, AppsCustomizePagedView.ContentType contentType, boolean resetPageToZero) argument
3837 hideHotseat(boolean animated) argument
5222 onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace) argument
5223 onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace) argument
5225 onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace) argument
[all...]
H A DWorkspace.java1397 // Sometimes the left parameter of the pages is animated during a layout transition;
1541 private void animateBackgroundGradient(float finalAlpha, boolean animated) { argument
1554 if (animated) {
2051 Animator getChangeStateAnimation(final State state, boolean animated, argument
2053 return getChangeStateAnimation(state, animated, 0, -1, layerViews);
2110 public void exitOverviewMode(boolean animated) { argument
2111 exitOverviewMode(-1, animated);
2114 public void exitOverviewMode(int snapPage, boolean animated) { argument
2115 enableOverviewMode(false, snapPage, animated);
2118 private void enableOverviewMode(boolean enable, int snapPage, boolean animated) { argument
2188 getChangeStateAnimation(final State state, boolean animated, int delay, int snapPage) argument
2192 getChangeStateAnimation(final State state, boolean animated, int delay, int snapPage, ArrayList<View> layerViews) argument
2467 onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace) argument
2472 onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace) argument
2481 onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace) argument
[all...]
H A DAppsCustomizePagedView.java747 public void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace) { argument
755 public void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace) { argument
763 public void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace) { argument
/packages/apps/Launcher2/src/com/android/launcher2/
H A DSearchDropTargetBar.java134 public void showSearchBar(boolean animated) { argument
136 if (animated) {
149 public void hideSearchBar(boolean animated) { argument
151 if (animated) {
H A DAppsCustomizeTabHost.java370 public void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace) { argument
371 mAppsCustomizePane.onLauncherTransitionPrepare(l, animated, toWorkspace);
401 public void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace) { argument
402 if (animated) {
413 public void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace) { argument
414 mAppsCustomizePane.onLauncherTransitionEnd(l, animated, toWorkspace);
416 if (animated) {
H A DLauncher.java731 // The animated view may be null in the case of a rotation during widget configuration
2361 * is animated relative to the specified View. If the View is null, no animation
2497 * @param view The view being animated
2530 private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) { argument
2532 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace);
2536 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) { argument
2538 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace);
2551 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) { argument
2553 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace);
2605 private void showAppsCustomizeHelper(final boolean animated, fina argument
2772 hideAppsCustomizeHelper(State toState, final boolean animated, final boolean springLoaded, final Runnable onCompleteRunnable) argument
2892 showWorkspace(boolean animated) argument
2896 showWorkspace(boolean animated, Runnable onCompleteRunnable) argument
2931 showAllApps(boolean animated) argument
2997 showDockDivider(boolean animated) argument
3032 showHotseat(boolean animated) argument
3051 hideHotseat(boolean animated) argument
4121 onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace) argument
4122 onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace) argument
4124 onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace) argument
[all...]
H A DWorkspace.java1135 private void animateBackgroundGradient(float finalAlpha, boolean animated) { argument
1147 if (animated) {
1563 Animator getChangeStateAnimation(final State state, boolean animated) { argument
1564 return getChangeStateAnimation(state, animated, 0);
1567 Animator getChangeStateAnimation(final State state, boolean animated, int delay) { argument
1575 AnimatorSet anim = animated ? LauncherAnimUtils.createAnimatorSet() : null;
1624 // animated and the animation end callback below doesn't run;
1626 if (i == mCurrentPage || !animated || oldStateIsSpringLoaded) {
1636 if (animated) {
1658 if (animated) {
1722 onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace) argument
1729 onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace) argument
1738 onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace) argument
[all...]
H A DAppsCustomizePagedView.java836 public void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace) { argument
844 public void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace) { argument
852 public void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace) { argument
H A DPagedView.java1802 protected void flashScrollingIndicator(boolean animated) { argument
1804 showScrollingIndicator(!animated);

Completed in 136 milliseconds