Searched defs:animate (Results 26 - 50 of 99) sorted by relevance

1234

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DClock.java221 public void disable(int state1, int state2, boolean animate) { argument
H A DKeyguardUserSwitcher.java102 public void setKeyguard(boolean keyguard, boolean animate) { argument
105 show(animate);
107 hide(animate);
120 public void show(boolean animate) { argument
125 mStatusBarView.setKeyguardUserSwitcherShowing(true, animate);
126 if (animate) {
132 private boolean hide(boolean animate) { argument
135 if (animate) {
140 mStatusBarView.setKeyguardUserSwitcherShowing(false, animate);
149 mUserSwitcher.getChildAt(i).animate()
229 hideIfNotSimple(boolean animate) argument
[all...]
H A DRemoteInputView.java199 private void onDefocus(boolean animate) { argument
206 if (animate && mRevealR > 0) {
312 onDefocus(false /* animate */);
465 removeDetachedView(mEditText, false /* animate */);
489 private void defocusIfNeeded(boolean animate) { argument
504 mRemoteInputView.onDefocus(animate);
515 defocusIfNeeded(false /* animate */);
523 defocusIfNeeded(true /* animate */);
551 defocusIfNeeded(true /* animate */);
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardServiceWrapper.java59 public void setOccluded(boolean isOccluded, boolean animate) { argument
61 mService.setOccluded(isOccluded, animate);
H A DKeyguardServiceDelegate.java192 mKeyguardService.setOccluded(mKeyguardState.occluded, false /* animate */);
251 public void setOccluded(boolean isOccluded, boolean animate) { argument
253 if (DEBUG) Log.v(TAG, "setOccluded(" + isOccluded + ") animate=" + animate);
254 mKeyguardService.setOccluded(isOccluded, animate);
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowAnimator.java105 animate(frameTimeNs);
135 private void animate(long frameTimeNs) { method in class:WindowAnimator
162 Slog.i(TAG, "!!! animate: entry time=" + mCurrentTime);
165 if (SHOW_TRANSACTIONS) Slog.i(TAG, ">>> OPEN TRANSACTION animate");
219 orAnimating(dc.getDockedDividerController().animate(mCurrentTime));
241 if (SHOW_TRANSACTIONS) Slog.i(TAG, "<<< CLOSE TRANSACTION animate");
280 Slog.i(TAG, "!!! animate: exit mAnimating=" + mAnimating
374 // case, we do not want to create an animator associated with it as {link #animate} will
/frameworks/support/fragment/java/android/support/v4/app/
H A DListFragment.java278 * @param animate If true, an animation will be used to transition to the
281 private void setListShown(boolean shown, boolean animate) { argument
291 if (animate) {
303 if (animate) {
/frameworks/base/core/java/android/widget/
H A DAbsSpinner.java279 public void setSelection(int position, boolean animate) { argument
281 boolean shouldAnimate = animate && mFirstPosition <= position &&
298 * @param animate Should the transition be animated
301 void setSelectionInt(int position, boolean animate) { argument
306 layout(delta, animate);
311 abstract void layout(int delta, boolean animate); argument
H A DCalendarView.java537 * @param animate Whether to animate the scroll to the current date.
546 public void setDate(long date, boolean animate, boolean center) { argument
547 mDelegate.setDate(date, animate, center);
621 void setDate(long date, boolean animate, boolean center); argument
H A DDayPickerView.java267 * immediately to the new date. To animate to the new date, use
281 * @param animate whether to smooth scroll to the new position
283 public void setDate(long timeInMillis, boolean animate) { argument
284 setDate(timeInMillis, animate, true);
292 * @param animate whether to smooth scroll to the new position
295 private void setDate(long timeInMillis, boolean animate, boolean setSelected) { argument
314 mViewPager.setCurrentItem(position, animate);
443 final boolean animate = !mAccessibilityManager.isEnabled();
448 mViewPager.setCurrentItem(nextItem, animate);
H A DAdapterViewAnimator.java267 void transformViewForTransition(int fromIndex, int toIndex, View view, boolean animate) { argument
299 private void setDisplayedChild(int whichChild, boolean animate) { argument
310 showOnly(mWhichChild, animate);
454 * @param animate Whether or not to use the in and out animations, defaults
457 void showOnly(int childIndex, boolean animate) { argument
511 transformViewForTransition(oldRelativeIndex, -1, previousView, animate);
531 // the transform for it's new relative position in the window, and animate
539 transformViewForTransition(oldRelativeIndex, newRelativeIndex, view, animate);
560 transformViewForTransition(-1, newRelativeIndex, fl, animate);
858 * Returns the current animation used to animate
938 setAnimateFirstView(boolean animate) argument
[all...]
H A DExpandableListView.java741 * @param animate true if the expanding group should be animated in
745 public boolean expandGroup(int groupPos, boolean animate) { argument
756 if (animate) {
H A DGallery.java633 void layout(int delta, boolean animate) { argument
842 * is enough information in the view's layout parameters to animate from the
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java327 v.animate().withLayer().scaleX(s).scaleY(s).alpha(1f).setDuration(animationLen);
332 public void place(View v, boolean animate) { argument
333 place(v, new Point(irand(0, mColumns), irand(0, mRows)), animate);
352 public synchronized void place(View v, Point pt, boolean animate) { argument
397 if (animate) {
398 squatter.animate().withLayer()
424 if (animate) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DBarTransitions.java91 public void transitionTo(int mode, boolean animate) { argument
102 if (DEBUG) Log.d(mTag, String.format("%s -> %s animate=%s",
103 modeToString(oldMode), modeToString(mode), animate));
104 onTransition(oldMode, mMode, animate);
107 protected void onTransition(int oldMode, int newMode, boolean animate) { argument
108 applyModeBackground(oldMode, newMode, animate);
111 protected void applyModeBackground(int oldMode, int newMode, boolean animate) { argument
112 if (DEBUG) Log.d(mTag, String.format("applyModeBackground oldMode=%s newMode=%s animate=%s",
113 modeToString(oldMode), modeToString(newMode), animate));
114 mBarBackground.applyModeBackground(oldMode, newMode, animate);
210 applyModeBackground(int oldMode, int newMode, boolean animate) argument
[all...]
H A DDozeScrimController.java65 public void setDozing(boolean dozing, boolean animate) { argument
76 if (animate) {
H A DNavigationBarFragment.java345 public void disable(int state1, int state2, boolean animate) { argument
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DDayPickerView.java171 * @param animate Whether to scroll to the given time or just redraw at the
178 public boolean goTo(CalendarDay day, boolean animate, boolean setSelected, boolean forceScroll) { argument
224 if (animate) {
/frameworks/support/core-ui/java/android/support/v4/app/
H A DActionBarDrawerToggle.java148 * The provided drawer indicator drawable will animate slightly off-screen as the drawer
179 * The provided drawer indicator drawable will animate slightly off-screen as the drawer
188 * @param animate True to animate the drawer indicator along with the drawer's position.
196 public ActionBarDrawerToggle(Activity activity, DrawerLayout drawerLayout, boolean animate, argument
216 mSlider.setOffset(animate ? TOGGLE_DRAWABLE_OFFSET : 0);
/frameworks/base/core/java/com/android/internal/widget/
H A DSwipeDismissLayout.java454 animate(
463 animate(
475 private void animate(float from, float to, long duration, TimeInterpolator interpolator, method in class:SwipeDismissLayout.DismissAnimator
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsImpl.java257 showRecents(mTriggeredFromAltTab, false /* draggingInRecents */, true /* animate */,
325 boolean animate, boolean launchedWhileDockingTask, boolean fromHome,
357 startRecentsActivity(runningTask, isHomeStackVisible.value || fromHome, animate,
453 startRecentsActivity(runningTask, isHomeStackVisible.value, true /* animate */,
473 // RecentsActivity) only if there is a task to animate to. Post this to ensure that we
669 false /* animate */,
992 boolean isHomeStackVisible, boolean animate, int growTarget) {
1052 if (!animate) {
324 showRecents(boolean triggeredFromAltTab, boolean draggingInRecents, boolean animate, boolean launchedWhileDockingTask, boolean fromHome, int growTarget) argument
991 startRecentsActivity(ActivityManager.RunningTaskInfo runningTask, boolean isHomeStackVisible, boolean animate, int growTarget) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DKeyguardAffordanceView.java419 public void setImageScale(float imageScale, boolean animate) { argument
420 setImageScale(imageScale, animate, -1, null);
427 * @param animate Should an animation be performed
428 * @param duration If animate, whats the duration? When -1 we take the default duration
429 * @param interpolator If animate, whats the interpolator? When null we take the default
432 public void setImageScale(float imageScale, boolean animate, long duration, argument
435 if (!animate) {
477 public void setImageAlpha(float alpha, boolean animate) { argument
478 setImageAlpha(alpha, animate, -1, null, null);
485 * @param animate Shoul
490 setImageAlpha(float alpha, boolean animate, long duration, Interpolator interpolator, Runnable runnable) argument
[all...]
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DRadialPickerLayout.java520 * @param animate True to animate the transition, false to show with no animation.
522 public void setCurrentItemShowing(int index, boolean animate) { argument
531 if (animate && (index != lastIndex)) {
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/picker/
H A DPicker.java357 void updateColumnAlpha(int colIndex, boolean animate) { argument
366 setOrAnimateAlpha(item, (selected == i), colIndex, animate);
372 boolean animate) {
377 setOrAnimateAlpha(view, animate, mFocusedAlpha, -1, mDecelerateInterpolator);
379 setOrAnimateAlpha(view, animate, mUnfocusedAlpha, -1, mDecelerateInterpolator);
384 setOrAnimateAlpha(view, animate, mVisibleColumnAlpha, -1, mDecelerateInterpolator);
386 setOrAnimateAlpha(view, animate, mInvisibleColumnAlpha, -1,
392 private void setOrAnimateAlpha(View view, boolean animate, float destAlpha, float startAlpha, argument
394 view.animate().cancel();
395 if (!animate) {
371 setOrAnimateAlpha(View view, boolean selected, int colIndex, boolean animate) argument
[all...]
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityService.java1012 * @param animate {@code true} to animate from the current scale and
1017 public boolean reset(boolean animate) { argument
1023 return connection.resetMagnification(animate);
1041 * @param animate {@code true} to animate from the current scale or
1045 public boolean setScale(float scale, boolean animate) { argument
1052 scale, Float.NaN, Float.NaN, animate);
1073 * @param animate {@code true} to animate fro
1077 setCenter(float centerX, float centerY, boolean animate) argument
[all...]

Completed in 564 milliseconds

1234