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

1 2 3 4 5 6 7 8 91011

  /packages/apps/PhoneCommon/src/com/android/phone/common/animation/
AnimationListenerAdapter.java 17 package com.android.phone.common.animation;
19 import android.view.animation.Animation;
20 import android.view.animation.Animation.AnimationListener;
32 public void onAnimationStart(Animation animation) {
39 public void onAnimationEnd(Animation animation) {
46 public void onAnimationRepeat(Animation animation)
    [all...]
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
AnimationListenerAdapter.java 18 import android.view.animation.Animation;
22 * {@link android.view.animation.Animation.AnimationListener} for convenience reasons.
24 public class AnimationListenerAdapter implements Animation.AnimationListener {
30 public void onAnimationStart(Animation animation) {
37 public void onAnimationEnd(Animation animation) {
44 public void onAnimationRepeat(Animation animation)
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/util/
TestAnimationListener.java 3 import android.view.animation.Animation;
4 import android.view.animation.Animation.AnimationListener;
13 public void onAnimationStart(Animation animation) {
18 public void onAnimationEnd(Animation animation) {
23 public void onAnimationRepeat(Animation animation) {
    [all...]
  /external/skia/bench/
SKPAnimationBench.h 20 class Animation : public SkRefCnt {
25 virtual ~Animation() {}
28 SKPAnimationBench(const char* name, const SkPicture*, const SkIRect& devClip, Animation*,
31 static Animation* CreateZoomAnimation(SkScalar zoomMax, double zoomPeriodMs);
43 SkAutoTUnref<Animation> fAnimation;
  /frameworks/rs/
rsAnimation.h 28 class Animation : public ObjectBase {
30 ~Animation();
32 static Animation * create(Context *rsc,
41 static Animation *createFromStream(Context *rsc, IStream *stream);
44 Animation(Context *rsc);
rsAnimation.cpp 24 void Animation::serialize(Context *rsc, OStream *stream) const {
27 Animation *Animation::createFromStream(Context *rsc, IStream *stream) {
32 Animation::Animation(Context *rsc) : ObjectBase(rsc)
47 Animation * Animation::create(Context *rsc,
56 Animation *a = new Animation(rsc);
130 Animation *a = nullptr;//Animation::create(rsc, inValues, outValues, valueCount, interp, pre, post)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/
DrawableOptions.java 3 import android.view.animation.Animation;
34 * using the given {@link android.view.animation.Animation}.
41 * asked to start an animation using a single {@link android.view.animation.Animation} object which results in
43 * per call to {@link com.bumptech.glide.GenericRequestBuilder#load(Object)} to avoid re-using animation objects.
45 * @param animation The Animation to use if no placeholder is set
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GenericAnimationComponent.java 24 setPhase(ComponentPhases.ANIMATION.ordinal());
43 mSprite.playAnimation(Animation.IDLE);
46 mSprite.playAnimation(Animation.MOVE);
49 mSprite.playAnimation(Animation.ATTACK);
52 mSprite.playAnimation(Animation.HIT_REACT);
55 mSprite.playAnimation(Animation.DEATH);
58 mSprite.playAnimation(Animation.HIDE);
61 mSprite.playAnimation(Animation.FROZEN);
76 public static final class Animation {
DoorAnimationComponent.java 23 public static final class Animation {
49 setPhase(ComponentPhases.ANIMATION.ordinal());
66 final float openAnimationLength = mSprite.findAnimation(Animation.OPENING).getLength();
72 mSprite.playAnimation(Animation.OPEN);
92 mSprite.playAnimation(Animation.OPENING);
107 final float closeAnimationLength = mSprite.findAnimation(Animation.CLOSING).getLength();
111 mSprite.playAnimation(Animation.CLOSED);
123 mSprite.playAnimation(Animation.CLOSING);
158 mSprite.playAnimation(Animation.OPEN);
161 mSprite.playAnimation(Animation.CLOSED)
    [all...]
  /external/robolectric/v1/src/main/java/android/view/animation/
ShadowAnimationBridge.java 1 package android.view.animation;
9 private Animation realAnimation;
11 public ShadowAnimationBridge(Animation realAnimation) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAnimationSet.java 6 import android.view.animation.Animation;
7 import android.view.animation.AnimationSet;
15 private ArrayList<Animation> animationList = new ArrayList<Animation>();
22 public void addAnimation(Animation anim) {
27 public List<Animation> getAnimations() {
ShadowAnimationUtils.java 4 import android.view.animation.Animation;
5 import android.view.animation.AnimationUtils;
6 import android.view.animation.TranslateAnimation;
17 public static Animation loadAnimation(Context context, int id) {
18 Animation anim = new TranslateAnimation(0, 0, 30, 0);
ShadowAnimation.java 3 import android.view.animation.Animation;
4 import android.view.animation.Interpolator;
5 import android.view.animation.ShadowAnimationBridge;
6 import android.view.animation.Transformation;
12 * Shadow implementation of {@code Animation} that provides support for invoking listener callbacks.
15 @Implements(Animation.class)
18 private Animation.AnimationListener listener;
29 private Animation realAnimation;
32 public void setAnimationListener(Animation.AnimationListener l)
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
SimpleAnimationTest.java 22 import com.badlogic.gdx.graphics.g2d.Animation;
29 private Animation currentWalk;
35 private Animation downWalk;
36 private Animation leftWalk;
37 private Animation rightWalk;
38 private Animation upWalk;
47 texture = new Texture(Gdx.files.internal("data/animation.png"));
53 downWalk = new Animation(ANIMATION_SPEED, downWalkReg);
54 leftWalk = new Animation(ANIMATION_SPEED, leftWalkReg);
55 rightWalk = new Animation(ANIMATION_SPEED, rightWalkReg);
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/animation/
ViewAnimation.java 1 package com.bumptech.glide.request.animation;
4 import android.view.animation.Animation;
7 * A {@link com.bumptech.glide.request.animation.GlideAnimation GlideAnimation} that can apply a
8 * {@link android.view.animation.Animation Animation} to a {@link android.view.View View} using
9 * {@link android.view.View#startAnimation(android.view.animation.Animation) View.startAnimation}.
18 * Constructs a new ViewAnimation that will start the given {@link android.view.animation.Animation}
39 Animation animation = animationFactory.build(); local
    [all...]
ViewAnimationFactory.java 1 package com.bumptech.glide.request.animation;
4 import android.view.animation.Animation;
5 import android.view.animation.AnimationUtils;
8 * A {@link com.bumptech.glide.request.animation.GlideAnimationFactory} that produces
9 * {@link com.bumptech.glide.request.animation.ViewAnimation}s.
17 public ViewAnimationFactory(Animation animation) {
18 this(new ConcreteAnimationFactory(animation));
30 * Returns a new {@link com.bumptech.glide.request.animation.GlideAnimation} for the given arguments. I
52 private final Animation animation; field in class:ViewAnimationFactory.ConcreteAnimationFactory
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
CanvasAnimation.java 21 public abstract class CanvasAnimation extends Animation {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
AnimateDrawable.java 21 import android.view.animation.Animation;
22 import android.view.animation.AnimationUtils;
23 import android.view.animation.Transformation;
27 private Animation mAnimation;
34 public AnimateDrawable(Drawable target, Animation animation) {
36 mAnimation = animation;
39 public Animation getAnimation() {
43 public void setAnimation(Animation anim)
    [all...]
  /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...]
  /frameworks/support/design/base/android/support/design/widget/
AnimationUtils.java 19 import android.support.v4.view.animation.FastOutLinearInInterpolator;
20 import android.support.v4.view.animation.FastOutSlowInInterpolator;
21 import android.support.v4.view.animation.LinearOutSlowInInterpolator;
22 import android.view.animation.Animation;
23 import android.view.animation.DecelerateInterpolator;
24 import android.view.animation.Interpolator;
25 import android.view.animation.LinearInterpolator;
46 static class AnimationListenerAdapter implements Animation.AnimationListener {
48 public void onAnimationStart(Animation animation)
    [all...]
  /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...]
  /development/samples/devbytes/animation/ViewAnimations/src/com/example/android/viewanimations/
ViewAnimations.java 22 import android.view.animation.AlphaAnimation;
23 import android.view.animation.Animation;
24 import android.view.animation.AnimationSet;
25 import android.view.animation.AnimationUtils;
26 import android.view.animation.RotateAnimation;
27 import android.view.animation.ScaleAnimation;
28 import android.view.animation.TranslateAnimation;
33 * This example shows how to use pre-3.0 view Animation classes to create various animated UI
62 new TranslateAnimation(Animation.ABSOLUTE, 0
    [all...]
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 77 struct Animation {
102 Animation* animation; member in struct:android::BootAnimation::Animation::Part
114 status_t initTexture(const Animation::Frame& frame);
118 Animation* loadAnimation(const String8&);
119 bool playAnimation(const Animation&);
120 void releaseAnimation(Animation*) const;
121 bool parseAnimationDesc(Animation&);
122 bool preloadZip(Animation &animation);
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/animation/
CurvedTranslateAnimation.java 17 package com.android.server.wm.animation;
19 import android.animation.KeyframeSet;
20 import android.animation.PathKeyframes;
23 import android.view.animation.Animation;
24 import android.view.animation.Transformation;
27 * Translate animation which follows a curved path.
29 public class CurvedTranslateAnimation extends Animation {
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
ViewGroupBindingAdapter.java 18 import android.animation.LayoutTransition;
27 import android.view.animation.Animation;
28 import android.view.animation.Animation.AnimationListener;
81 public void onAnimationStart(Animation animation) {
83 start.onAnimationStart(animation);
88 public void onAnimationEnd(Animation animation) {
    [all...]

Completed in 720 milliseconds

1 2 3 4 5 6 7 8 91011