HomeSort by relevance Sort by last modified time
    Searched refs:animate (Results 101 - 125 of 456) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/java/android/widget/
AbsSpinner.java 269 public void setSelection(int position, boolean animate) {
270 // Animate only if requested position is already on screen somewhere
271 boolean shouldAnimate = animate && mFirstPosition <= position &&
288 * @param animate Should the transition be animated
291 void setSelectionInt(int position, boolean animate) {
296 layout(delta, animate);
301 abstract void layout(int delta, boolean animate);
AdapterViewAnimator.java 267 void transformViewForTransition(int fromIndex, int toIndex, View view, boolean animate) {
299 private void setDisplayedChild(int whichChild, boolean animate) {
310 showOnly(mWhichChild, animate);
455 * @param animate Whether or not to use the in and out animations, defaults
458 void showOnly(int childIndex, boolean animate) {
512 transformViewForTransition(oldRelativeIndex, -1, previousView, animate);
532 // the transform for it's new relative position in the window, and animate
540 transformViewForTransition(oldRelativeIndex, newRelativeIndex, view, animate);
561 transformViewForTransition(-1, newRelativeIndex, fl, animate);
859 * Returns the current animation used to animate a View that enters the screen
    [all...]
DayPickerView.java 266 * immediately to the new date. To animate to the new date, use
280 * @param animate whether to smooth scroll to the new position
282 public void setDate(long timeInMillis, boolean animate) {
283 setDate(timeInMillis, animate, true);
291 * @param animate whether to smooth scroll to the new position
294 private void setDate(long timeInMillis, boolean animate, boolean setSelected) {
301 mViewPager.setCurrentItem(position, animate);
421 final boolean animate = !mAccessibilityManager.isEnabled();
426 mViewPager.setCurrentItem(nextItem, animate);
  /packages/apps/Settings/src/com/android/settings/fingerprint/
FingerprintEnrollEnrolling.java 141 updateProgress(false /* animate */);
254 updateProgress(true /* animate */);
262 private void updateProgress(boolean animate) {
265 if (animate) {
292 mErrorText.animate()
299 mErrorText.animate().cancel();
307 mErrorText.animate()
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskView.java 246 // Set the dim to 0 so we can animate it in
251 // Move the task view off screen (below) so we can animate it in
256 // Move the task view off screen (below) so we can animate it in
275 // Animate the dim/overlay
277 // Animate the thumbnail alpha before the dim animation (to prevent updating the
295 // Animate the action button in
299 // Animate the task up if it was occluding the launch target
303 animate().alpha(1f)
323 // Animate the tasks up
331 animate().translationZ(transform.translationZ)
    [all...]
TaskViewTransform.java 83 ViewPropertyAnimator anim = v.animate();
86 // Animate to the final state
99 // Use layers if we animate alpha
136 v.animate().cancel();
  /packages/apps/Dialer/src/com/android/dialer/
DialtactsActivity.java 316 enterSearchUi(mIsDialpadShown, mSearchQuery, true /* animate */);
342 true /* animate */);
486 getFabAlignment(), false /* animate */);
537 mFloatingActionButtonController.align(getFabAlignment(), false /* animate */);
698 private void showDialpadFragment(boolean animate) {
714 mDialpadFragment.setAnimate(animate);
718 if (animate) {
726 mListsFragment.getView().animate().alpha(0).withLayer();
748 public void hideDialpadFragment(boolean animate, boolean clearDialpad) {
759 mDialpadFragment.setAnimate(animate);
765 mFloatingActionButtonController.align(getFabAlignment(), animate); local
    [all...]
  /development/samples/devbytes/ui/ListViewDeletion/src/com/example/android/listviewdeletion/
ListViewDeletion.java 36 * recycled before you animate them.
97 view.animate().alpha(0).withEndAction(new Runnable() {
124 checkedView.animate().alpha(0).withEndAction(new Runnable() {
  /external/glide/library/src/main/java/com/bumptech/glide/
GenericRequestBuilder.java 361 return animate(animation);
371 public GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> animate(int animationId) { method in class:GenericRequestBuilder
372 return animate(new ViewAnimationFactory<TranscodeType>(context, animationId));
379 * @see #animate(int)
380 * @see #animate(com.bumptech.glide.request.animation.ViewPropertyAnimation.Animator)
384 * views animating repeatedly. Use {@link #animate(int)} or
385 * {@link #animate(com.bumptech.glide.request.animation.ViewPropertyAnimation.Animator)}. Scheduled to be removed in
391 public GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> animate(Animation animation) { method in class:GenericRequestBuilder
392 return animate(new ViewAnimationFactory<TranscodeType>(animation));
403 public GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> animate( method in class:GenericRequestBuilder
408 GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> animate( method in class:GenericRequestBuilder
    [all...]
  /external/skia/src/animator/
SkDisplayTypes.cpp 20 SkAnimateBase* animate = (SkAnimateBase* ) *depPtr; local
21 animate->setChanged(true);
  /frameworks/base/libs/hwui/
AnimatorManager.cpp 88 bool remove = animator->animate(mContext);
109 uint32_t AnimatorManager::animate(TreeInfo& info) { function in class:android::uirenderer::AnimatorManager
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardPinBasedInputView.java 146 protected void resetPasswordText(boolean animate) {
147 mPasswordEntry.reset(animate);
199 resetPasswordText(true /* animate */);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ActivatableNotificationView.java 80 * Scale for the background to animate from when exiting dark mode.
170 makeInactive(true /* animate */);
212 makeInactive(true /* animate */);
228 makeInactive(true /* animate */);
232 makeInactive(true /* animate */);
290 mBackgroundNormal.animate()
299 public void makeInactive(boolean animate) {
302 if (animate) {
400 background.animate()
423 mBackgroundDimmed.animate().cancel()
    [all...]
KeyguardAffordanceView.java 372 public void setImageScale(float imageScale, boolean animate) {
373 setImageScale(imageScale, animate, -1, null);
380 * @param animate Should an animation be performed
381 * @param duration If animate, whats the duration? When -1 we take the default duration
382 * @param interpolator If animate, whats the interpolator? When null we take the default
385 public void setImageScale(float imageScale, boolean animate, long duration,
388 if (!animate) {
430 public void setImageAlpha(float alpha, boolean animate) {
431 setImageAlpha(alpha, animate, -1, null, null);
438 * @param animate Should an animation be performe
    [all...]
  /frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
AlignmentTest.java 60 animate(v);
106 public static void animate(View v) { method in class:AlignmentTest
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
BridgeRenderSession.java 108 public Result animate(Object targetObject, String animationName, method in class:BridgeRenderSession
114 mLastResult = mSession.animate(targetObject, animationName, isFrameworkAnimation,
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
ViewGroupBindingAdapter.java 39 public static void setAnimateLayoutChanges(ViewGroup view, boolean animate) {
40 if (animate) {
  /packages/apps/DeskClock/src/com/android/deskclock/widget/
ActionableToastBar.java 128 public void hide(boolean animate) {
137 if (animate) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
BaseScrollAdapterFragment.java 198 ViewPropertyAnimator animation = mSelectorView.animate()
208 // selector is not faded out, so we must animate the scale
220 mSelectorView.animate()
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
CustomViewToolbar.java 120 mSearchButton.animate()
134 mSearchButton.animate()
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
ButtonSwitcher.java 77 // We have been asked to animate before we were ready, so we took a note of it.
135 // Transition between two buttons : animate out, then in
165 return button.animate().translationX(0);
168 return button.animate().translationX(outerX - innerX);
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
DigitalWatchFaceWearableConfigActivity.java 249 public void onCenterPosition(boolean animate) {
250 if (animate) {
265 public void onNonCenterPosition(boolean animate) {
266 if (animate) {
  /developers/build/prebuilts/gradle/WatchViewStub/Wearable/src/main/java/com/example/android/google/wearable/watchviewstub/
MainActivity.java 70 mRoundBackground.animate().rotationBy(360).setDuration(300).start();
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
DigitalWatchFaceWearableConfigActivity.java 249 public void onCenterPosition(boolean animate) {
250 if (animate) {
265 public void onNonCenterPosition(boolean animate) {
266 if (animate) {
  /developers/samples/android/wearable/wear/WatchViewStub/Wearable/src/main/java/com/example/android/google/wearable/watchviewstub/
MainActivity.java 70 mRoundBackground.animate().rotationBy(360).setDuration(300).start();

Completed in 742 milliseconds

1 2 3 45 6 7 8 91011>>