Searched refs:animation (Results 101 - 125 of 262) sorted by relevance

1234567891011

/packages/apps/Nfc/src/com/android/nfc/beam/
H A DSendUi.java22 import android.animation.Animator;
23 import android.animation.AnimatorSet;
24 import android.animation.ObjectAnimator;
25 import android.animation.PropertyValuesHolder;
26 import android.animation.TimeAnimator;
59 import android.view.animation.AccelerateDecelerateInterpolator;
60 import android.view.animation.DecelerateInterpolator;
66 * This class is responsible for handling the UI animation
67 * around Android Beam. The animation consists of the following
71 * mSlowSendAnimator: scales the screenshot down to 0.2f (used as a "send in progress" animation)
666 onAnimationStart(Animator animation) argument
669 onAnimationEnd(Animator animation) argument
687 onAnimationCancel(Animator animation) argument
690 onAnimationRepeat(Animator animation) argument
693 onTimeUpdate(TimeAnimator animation, long totalTime, long deltaTime) argument
[all...]
/packages/apps/Camera/src/com/android/camera/
H A DRotateDialogController.java23 import android.view.animation.Animation;
24 import android.view.animation.AnimationUtils;
82 public void setOrientation(int orientation, boolean animation) { argument
84 mRotateDialog.setOrientation(orientation, animation);
H A DActivityBase.java35 import android.view.animation.AlphaAnimation;
36 import android.view.animation.Animation;
37 import android.view.animation.DecelerateInterpolator;
356 // Move the next picture with capture animation. "1" means next.
426 public void onAnimationEnd(Animation animation) { argument
433 public void onAnimationRepeat(Animation animation) { argument
437 public void onAnimationStart(Animation animation) { argument
442 // Initialize the animation.
/packages/apps/Camera2/src/com/android/camera/app/
H A DFilmstripBottomPanel.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ObjectAnimator;
281 public void onAnimationEnd(Animator animation) {
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DTransitionAnimationView.java18 import android.animation.ObjectAnimator;
72 * @param duration The duration the animation should last for. If -1, the system default(300)
76 // Stop any animation that may still be running.
/packages/apps/DeskClock/src/com/android/deskclock/
H A DTimerSetupView.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
53 public void onAnimationEnd(Animator animation) {
64 public void onAnimationStart(Animator animation) {
/packages/apps/Launcher3/src/com/android/launcher3/
H A DBaseRecyclerViewFastScrollBar.java18 import android.animation.AnimatorSet;
19 import android.animation.ArgbEvaluator;
20 import android.animation.ObjectAnimator;
21 import android.animation.ValueAnimator;
H A DFolderIcon.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ValueAnimator;
22 import android.animation.ValueAnimator.AnimatorUpdateListener;
38 import android.view.animation.AccelerateInterpolator;
39 import android.view.animation.DecelerateInterpolator;
241 public void onAnimationUpdate(ValueAnimator animation) {
242 final float percent = (Float) animation.getAnimatedValue();
252 public void onAnimationStart(Animator animation) {
270 public void onAnimationUpdate(ValueAnimator animation) {
[all...]
H A DBaseRecyclerViewFastScrollPopup.java18 import android.animation.Animator;
19 import android.animation.ObjectAnimator;
H A DDeleteDropTarget.java19 import android.animation.TimeInterpolator;
25 import android.view.animation.AnimationUtils;
125 // NOTE: Because it takes time for the first frame of animation to actually be
126 // called and we expect the animation to be a continuation of the fling, we have
H A DFastBitmapDrawable.java19 import android.animation.ObjectAnimator;
20 import android.animation.TimeInterpolator;
H A DFocusIndicatorView.java19 import android.animation.ObjectAnimator;
20 import android.animation.PropertyValuesHolder;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DAppsCustomizeTabHost.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
22 import android.animation.ObjectAnimator;
73 * reflects the new content (but doesn't do the animation and logic associated with changing
225 // If we can't get the visible page ranges, then just skip the animation
274 public void onAnimationEnd(Animator animation) {
278 public void onAnimationCancel(Animator animation) {
285 public void onAnimationEnd(Animator animation) {
357 // force building the layer, so you don't get a blip early in an animation
[all...]
H A DDragLayer.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.TimeInterpolator;
22 import android.animation.ValueAnimator;
23 import android.animation.ValueAnimator.AnimatorUpdateListener;
38 import android.view.animation.DecelerateInterpolator;
39 import android.view.animation.Interpolator;
62 // Variables relating to animation of views after drop
545 * This method animates a view at the end of a drag and drop animation.
555 * @param duration The duration of the animation
[all...]
/packages/apps/Messaging/src/com/android/messaging/util/
H A DUiUtils.java40 import android.view.animation.Animation;
41 import android.view.animation.Animation.AnimationListener;
42 import android.view.animation.Interpolator;
43 import android.view.animation.ScaleAnimation;
199 * Reveals/Hides a view with a scale animation from view center.
202 * @param onFinishRunnable an optional runnable called at the end of the animation
218 public void onAnimationStart(final Animation animation) {
222 public void onAnimationRepeat(final Animation animation) {
226 public void onAnimationEnd(final Animation animation) {
229 // the animation wil
[all...]
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/
H A DGrantPermissionsDefaultViewHandler.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.ObjectAnimator;
35 import android.view.animation.Animation;
36 import android.view.animation.AnimationUtils;
37 import android.view.animation.Interpolator;
90 // Needed for animation
253 public void onAnimationEnd(Animator animation) {
254 // This is the longest animation, when it finishes, we are done.
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DMasterImage.java19 import android.animation.Animator;
20 import android.animation.ValueAnimator;
441 public void onAnimationUpdate(ValueAnimator animation) {
443 setMaskScale((Float) animation.getAnimatedValue());
446 setAnimRotation((Float) animation.getAnimatedValue());
447 setAnimFraction(animation.getAnimatedFraction());
453 public void onAnimationStart(Animator animation) {
458 public void onAnimationEnd(Animator animation) {
466 public void onAnimationCancel(Animator animation) {
471 public void onAnimationRepeat(Animator animation) {
[all...]
/packages/apps/DeskClock/src/com/android/deskclock/alarms/
H A DAlarmActivity.java18 import android.animation.Animator;
19 import android.animation.AnimatorListenerAdapter;
20 import android.animation.AnimatorSet;
21 import android.animation.ObjectAnimator;
22 import android.animation.PropertyValuesHolder;
23 import android.animation.TimeInterpolator;
24 import android.animation.ValueAnimator;
43 import android.support.v4.view.animation.PathInterpolatorCompat;
459 * Perform snooze animation and send snooze intent.
486 * Perform dismiss animation an
[all...]
/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DTimerFragment.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
22 import android.animation.ObjectAnimator;
23 import android.animation.TimeInterpolator;
42 import android.view.animation.AccelerateDecelerateInterpolator;
43 import android.view.animation.AccelerateInterpolator;
44 import android.view.animation.DecelerateInterpolator;
168 public void onAnimationEnd(Animator animation) {
426 public void onAnimationEnd(Animator animation) {
[all...]
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DConversationFastScroller.java19 import android.animation.AnimatorSet;
20 import android.animation.ObjectAnimator;
217 AnimatorSet animation = new AnimatorSet();
218 animation.playTogether(trackSlide, thumbSlide);
219 animation.setDuration(SHOW_ANIMATION_DURATION_MS);
220 animation.start();
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
H A DMediaPickerPanel.java27 import android.view.animation.Animation;
28 import android.view.animation.Transformation;
134 // cause the framework to abort the animation from 0, so we must always have some
149 // Slide out the tab strip at the end of the animation to full screen.
156 // landscape mode after animation.
240 * @param animate need animation
286 final Animation animation = new Animation() {
299 animation.setDuration(UiUtils.MEDIAPICKER_TRANSITION_DURATION);
300 animation.setInterpolator(UiUtils.EASE_OUT_INTERPOLATOR);
301 startAnimation(animation);
[all...]
/packages/apps/InCallUI/src/com/android/incallui/
H A DCallCardFragment.java19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
22 import android.animation.ObjectAnimator;
45 import android.view.animation.Animation;
46 import android.view.animation.AnimationUtils;
53 import com.android.phone.common.animation.AnimUtils;
154 // Whether or not the call card is currently in the process of an animation
341 // Translate the call card to its pre-animation state.
351 // Perform animation o
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DPhotoPageBottomControls.java24 import android.view.animation.AlphaAnimation;
25 import android.view.animation.Animation;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DPaper.java21 import android.view.animation.DecelerateInterpolator;
22 import android.view.animation.Interpolator;
/packages/apps/LegacyCamera/src/com/android/camera/
H A DRotateDialogController.java26 import android.view.animation.Animation;
27 import android.view.animation.AnimationUtils;

Completed in 3740 milliseconds

1234567891011