HomeSort by relevance Sort by last modified time
    Searched refs:animation (Results 1 - 25 of 632) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/view/animation/
Interpolator.java 17 package android.view.animation;
19 import android.animation.TimeInterpolator;
22 * An interpolator defines the rate of change of an animation. This allows
23 * the basic animation effects (alpha, scale, translate, rotate) to be
27 // A new interface, TimeInterpolator, was introduced for the new android.animation
  /frameworks/base/core/java/android/animation/
TimeInterpolator.java 17 package android.animation;
20 * A time interpolator defines the rate of change of an animation. This allows animations
26 * Maps a value representing the elapsed fraction of an animation to a value that represents
28 * value of an animation to derive the animated value at the current elapsed animation time.
31 * in the animation where 0 represents the start and 1.0 represents
AnimatorListenerAdapter.java 17 package android.animation;
20 * This adapter class provides empty implementations of the methods from {@link android.animation.Animator.AnimatorListener}.
30 public void onAnimationCancel(Animator animation) {
37 public void onAnimationEnd(Animator animation) {
44 public void onAnimationRepeat(Animator animation) {
51 public void onAnimationStart(Animator animation) {
TypeEvaluator.java 17 package android.animation;
22 * custom evaulators for types that are not automatically understood and used by the animation
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
LoopMode.java 33 package com.jme3.animation;
41 * The animation will play repeatedly, when it reaches the end
42 * the animation will play again from the beginning, and so on.
47 * The animation will not loop. It will play until the last frame, and then
48 * freeze at that frame. It is possible to decide to play a new animation
54 * The animation will cycle back and forth. When reaching the end, the
55 * animation will play backwards from the last frame until it reaches
BoneAnimation.java 32 package com.jme3.animation;
35 * @deprecated use Animation instead with tracks of selected type (ie. BoneTrack, SpatialTrack, MeshTrack)
38 public final class BoneAnimation extends Animation {
SpatialAnimation.java 1 package com.jme3.animation;
4 * @deprecated use Animation instead with tracks of selected type (ie. BoneTrack, SpatialTrack, MeshTrack)
7 public class SpatialAnimation extends Animation {
  /packages/apps/Camera/src/com/android/camera/ui/
Rotatable.java 20 // Set parameter 'animation' to true to have animation when rotation.
21 public void setOrientation(int orientation, boolean animation);
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherAnimatorUpdateListener.java 19 import android.animation.ValueAnimator;
20 import android.animation.ValueAnimator.AnimatorUpdateListener;
23 public void onAnimationUpdate(ValueAnimator animation) {
24 final float b = (Float) animation.getAnimatedValue();
LauncherAnimUtils.java 19 import android.animation.Animator;
20 import android.animation.AnimatorSet;
21 import android.animation.ObjectAnimator;
22 import android.animation.PropertyValuesHolder;
23 import android.animation.ValueAnimator;
30 public void onAnimationStart(Animator animation) {
33 public void onAnimationRepeat(Animator animation) {
36 public void onAnimationEnd(Animator animation) {
37 sAnimators.remove(animation);
40 public void onAnimationCancel(Animator animation) {
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
LayoutAnimationController_AnimationParametersTest.java 17 package android.view.animation.cts;
21 import android.view.animation.LayoutAnimationController;
AnimationTest.java 17 package android.view.animation.cts;
29 import android.view.animation.AccelerateDecelerateInterpolator;
30 import android.view.animation.AccelerateInterpolator;
31 import android.view.animation.Animation;
32 import android.view.animation.AnimationUtils;
33 import android.view.animation.DecelerateInterpolator;
34 import android.view.animation.Interpolator;
35 import android.view.animation.Transformation;
36 import android.view.animation.Animation.AnimationListener
88 Animation animation = AnimationUtils.loadAnimation(mActivity, R.anim.decelerate_alpha); local
100 Animation animation = new Animation() { local
114 Animation animation = AnimationUtils.loadAnimation(mActivity, R.anim.accelerate_alpha); local
119 AnimationTestUtils.assertRunAnimation(getInstrumentation(), animWindow, animation); local
140 AnimationTestUtils.assertRunAnimation(getInstrumentation(), animWindow, animation); local
158 AnimationTestUtils.assertRunAnimation(getInstrumentation(), animWindow, animation); local
174 Animation animation = AnimationUtils.loadAnimation(mActivity, R.anim.decelerate_alpha); local
188 Animation animation = new Animation() { local
330 Animation animation = new Animation() { local
346 animation, ACCELERATE_ALPHA_DURATION + startOffset); local
372 Animation animation = new Animation() { local
    [all...]
GridLayoutAnimationController_AnimationParametersTest.java 17 package android.view.animation.cts;
21 import android.view.animation.GridLayoutAnimationController;
22 import android.view.animation.GridLayoutAnimationController.AnimationParameters;
AlphaAnimationTest.java 17 package android.view.animation.cts;
23 import android.view.animation.AlphaAnimation;
24 import android.view.animation.Transformation;
41 AlphaAnimation animation = new AlphaAnimation(mContext, null); local
42 assertFalse(animation.willChangeBounds());
46 AlphaAnimation animation = new AlphaAnimation(0.0f, 0.5f); local
47 assertFalse(animation.willChangeTransformationMatrix());
51 MyAlphaAnimation animation = new MyAlphaAnimation(0.0f, 1.0f); local
55 animation.applyTransformation(0.0f, transformation);
58 animation.applyTransformation(0.5f, transformation)
    [all...]
AnimationUtilsTest.java 17 package android.view.animation.cts;
24 import android.view.animation.AccelerateInterpolator;
25 import android.view.animation.AlphaAnimation;
26 import android.view.animation.Animation;
27 import android.view.animation.AnimationUtils;
28 import android.view.animation.GridLayoutAnimationController;
29 import android.view.animation.Interpolator;
30 import android.view.animation.LayoutAnimationController;
55 Animation animation = AnimationUtils.loadAnimation(mActivity, R.anim.anim_alpha) local
    [all...]
  /external/webkit/Source/WebCore/page/
WebKitAnimationList.cpp 29 #include "Animation.h"
64 void WebKitAnimationList::append(RefPtr<WebKitAnimation> animation)
66 m_animations.append(animation);
69 unsigned WebKitAnimationList::insertAnimation(RefPtr<WebKitAnimation> animation, unsigned index)
71 if (!animation)
77 m_animations.insert(index, animation);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
LayoutAnimation2.java 21 import android.view.animation.AlphaAnimation;
22 import android.view.animation.Animation;
23 import android.view.animation.AnimationSet;
24 import android.view.animation.LayoutAnimationController;
25 import android.view.animation.TranslateAnimation;
39 Animation animation = new AlphaAnimation(0.0f, 1.0f); local
40 animation.setDuration(50);
41 set.addAnimation(animation);
    [all...]
  /cts/tests/src/android/view/animation/cts/
AnimationTestUtils.java 17 package android.view.animation.cts;
23 import android.view.animation.Animation;
24 import android.view.animation.LayoutAnimationController;
27 * The utility methods for animation test.
41 * Assert run an animation successfully. Timeout is duration of animation.
43 * @param instrumentation to run animation.
44 * @param view view window to run animation.
45 * @param animation will be run
    [all...]
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/animation/
FadeAnimation.java 17 package com.android.photoeditor.animation;
19 import android.view.animation.AlphaAnimation;
20 import android.view.animation.Animation;
23 * Fading animation that either fades in or out the view by alpha animations.
31 Animation fadeOut = new AlphaAnimation(1.0f, 0.5f);
32 Animation fadeIn = new AlphaAnimation(0.5f, 1.0f);
AnimationPair.java 17 package com.android.photoeditor.animation;
19 import android.view.animation.Animation;
26 private final Animation first;
27 private final Animation second;
29 AnimationPair(Animation first, Animation second) {
34 public Animation first() {
38 public Animation second() {
  /frameworks/base/core/tests/coretests/src/android/animation/
ValueAnimatorEventsTest.java 16 package android.animation;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListWithDisappearingItemBug.java 25 import android.view.animation.AlphaAnimation;
26 import android.view.animation.Animation;
27 import android.view.animation.AnimationSet;
28 import android.view.animation.LayoutAnimationController;
29 import android.view.animation.TranslateAnimation;
63 Animation animation = new AlphaAnimation(0.0f, 1.0f); local
64 animation.setDuration(50);
65 set.addAnimation(animation);
    [all...]
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
AnimData.java 35 import com.jme3.animation.Animation;
36 import com.jme3.animation.Skeleton;
42 public final ArrayList<Animation> anims;
44 public AnimData(Skeleton skeleton, ArrayList<Animation> anims) {
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
TrimControllerOverlay.java 19 import android.animation.Animator;
20 import android.animation.Animator.AnimatorListener;
21 import android.animation.ObjectAnimator;
51 // Add animation to hide the play button while playing.
57 public void onAnimationStart(Animator animation) {
61 public void onAnimationEnd(Animator animation) {
66 public void onAnimationCancel(Animator animation) {
71 public void onAnimationRepeat(Animator animation) {
  /external/chromium/chrome/browser/ui/views/location_bar/
suggested_text_view.h 9 #include "ui/base/animation/animation_delegate.h"
15 // Invoke |StartAnimation| to start an animation that when done invokes
23 // Starts the animation. If the animation is currently running it is stopped
24 // and restarted. The animation transitions the suggested text to look like
25 // selected text. When the animation completes |OnCommitSuggestedText| is
29 // Stops the animation.
36 virtual void AnimationEnded(const ui::Animation* animation);
37 virtual void AnimationProgressed(const ui::Animation* animation)
    [all...]

Completed in 630 milliseconds

1 2 3 4 5 6 7 8 91011>>