Searched refs:Animation (Results 1 - 25 of 36) sorted by relevance

12

/frameworks/rs/
H A DrsAnimation.cpp24 void Animation::serialize(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 *
[all...]
H A DrsAnimation.h28 class Animation : public ObjectBase { class in namespace:android::renderscript
30 ~Animation();
32 static Animation * create(Context *rsc,
41 static Animation *createFromStream(Context *rsc, IStream *stream);
44 Animation(Context *rsc);
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListWithDisappearingItemBug.java26 import android.view.animation.Animation;
63 Animation animation = new AlphaAnimation(0.0f, 1.0f);
68 Animation.RELATIVE_TO_SELF, 0.0f,Animation.RELATIVE_TO_SELF, 0.0f,
69 Animation.RELATIVE_TO_SELF, -1.0f,Animation.RELATIVE_TO_SELF, 0.0f
/frameworks/base/core/java/android/view/animation/
H A DLayoutAnimationController.java76 protected Animation mAnimation;
106 Animation.Description d = Animation.Description.parseValue(
131 public LayoutAnimationController(Animation animation) {
142 public LayoutAnimationController(Animation animation, float delay) {
178 * @see #setAnimation(Animation)
198 public void setAnimation(Animation animation) {
207 * @return an {@link android.view.animation.Animation} instance
210 * @see #setAnimation(Animation)
212 public Animation getAnimatio
[all...]
H A DAnimationSet.java36 * <p>The way that AnimationSet inherits behavior from Animation is important to
37 * understand. Some of the Animation attributes applied to AnimationSet affect the
52 public class AnimationSet extends Animation {
66 private ArrayList<Animation> mAnimations = new ArrayList<Animation>();
129 animation.mAnimations = new ArrayList<Animation>();
132 final ArrayList<Animation> animations = mAnimations;
186 final ArrayList<Animation> animations = mAnimations;
216 * @param a Animation to add.
218 public void addAnimation(Animation
[all...]
H A DAnimationUtils.java46 * {@link Animation#setStartTime(long)}. Refer to {@link android.os.SystemClock} for more
59 * Loads an {@link Animation} object from a resource
66 public static Animation loadAnimation(Context context, int id)
88 private static Animation createAnimationFromXml(Context c, XmlPullParser parser)
94 private static Animation createAnimationFromXml(Context c, XmlPullParser parser,
97 Animation anim = null;
209 public static Animation makeInAnimation(Context c, boolean fromLeft) {
210 Animation a;
230 public static Animation makeOutAnimation(Context c, boolean toRight) {
231 Animation
[all...]
H A DAnimation.java29 * Abstraction for an Animation that can be applied to Views, Surfaces, or
33 public abstract class Animation implements Cloneable { class in inherits:Cloneable
94 = SystemProperties.getBoolean("log.closeguard.Animation", false);
220 public Animation() { method in class:Animation
231 public Animation(Context context, AttributeSet attrs) { method in class:Animation
232 TypedArray a = context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.Animation);
262 protected Animation clone() throws CloneNotSupportedException {
263 final Animation animation = (Animation) super.clone();
360 mListener.onAnimationStart(Animation
[all...]
H A DGridLayoutAnimationController.java118 Animation.Description d = Animation.Description.parseValue(
121 d = Animation.Description.parseValue(
139 public GridLayoutAnimationController(Animation animation) {
151 public GridLayoutAnimationController(Animation animation, float columnDelay, float rowDelay) {
H A DAlphaAnimation.java29 public class AlphaAnimation extends Animation {
H A DRotateAnimation.java30 public class RotateAnimation extends Animation {
124 * Animation.ABSOLUTE, Animation.RELATIVE_TO_SELF, or
125 * Animation.RELATIVE_TO_PARENT.
132 * Animation.ABSOLUTE, Animation.RELATIVE_TO_SELF, or
133 * Animation.RELATIVE_TO_PARENT.
H A DTranslateAnimation.java29 public class TranslateAnimation extends Animation {
110 * Animation.ABSOLUTE, Animation.RELATIVE_TO_SELF, or
111 * Animation.RELATIVE_TO_PARENT.
116 * Animation.ABSOLUTE, Animation.RELATIVE_TO_SELF, or
117 * Animation.RELATIVE_TO_PARENT.
122 * Animation.ABSOLUTE, Animation.RELATIVE_TO_SELF, or
123 * Animation
[all...]
H A DScaleAnimation.java30 public class ScaleAnimation extends Animation {
196 * Animation.ABSOLUTE, Animation.RELATIVE_TO_SELF, or
197 * Animation.RELATIVE_TO_PARENT.
204 * Animation.ABSOLUTE, Animation.RELATIVE_TO_SELF, or
205 * Animation.RELATIVE_TO_PARENT.
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DMarqueeActivity.java23 import android.view.animation.Animation;
60 Animation animation = AnimationUtils.loadAnimation(text2.getContext(),
H A DTransformsAndAnimationsActivity.java26 import android.view.animation.Animation;
118 alphaAnim.setRepeatCount(Animation.INFINITE);
119 alphaAnim.setRepeatMode(Animation.REVERSE);
123 transAnim.setRepeatCount(Animation.INFINITE);
124 transAnim.setRepeatMode(Animation.REVERSE);
H A DBitmapsActivity.java31 import android.view.animation.Animation;
49 a.setRepeatCount(Animation.INFINITE);
50 a.setRepeatMode(Animation.REVERSE);
H A DAlphaLayersActivity.java28 import android.view.animation.Animation;
47 a.setRepeatCount(Animation.INFINITE);
48 a.setRepeatMode(Animation.REVERSE);
/frameworks/base/core/java/android/widget/
H A DViewAnimator.java27 import android.view.animation.Animation;
45 Animation mInAnimation;
46 Animation mOutAnimation;
260 * @return An Animation or null if none is set.
262 * @see #setInAnimation(android.view.animation.Animation)
265 public Animation getInAnimation() {
277 public void setInAnimation(Animation inAnimation) {
284 * @return An Animation or null if none is set.
286 * @see #setOutAnimation(android.view.animation.Animation)
289 public Animation getOutAnimatio
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DAppWindowAnimator.java9 import android.view.animation.Animation;
25 Animation animation;
48 Animation thumbnailAnimation;
51 static final Animation sDummyAnimation = new DummyAnimation();
59 public void setAnimation(Animation anim, boolean initialized) {
69 if (zorder == Animation.ZORDER_TOP) {
71 } else if (zorder == Animation.ZORDER_BOTTOM) {
253 TAG, "Animation done in " + mAppToken
310 static final class DummyAnimation extends Animation {
H A DScreenRotationAnimation.java30 import android.view.animation.Animation;
62 Animation mStartExitAnimation;
64 Animation mStartEnterAnimation;
66 Animation mStartFrameAnimation;
73 Animation mFinishExitAnimation;
75 Animation mFinishEnterAnimation;
77 Animation mFinishFrameAnimation;
83 Animation mRotateExitAnimation;
85 Animation mRotateEnterAnimation;
87 Animation mRotateFrameAnimatio
[all...]
H A DWindowAnimator.java21 import android.view.animation.Animation;
273 "Animation started that could impact force hide: " + win);
364 Animation a = mPolicy.createForceHideEnterAnimation(wallpaperInUnForceHiding);
563 final Animation mAnimation;
567 final Animation animation, final int animDw, final int animDh) {
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java32 import android.view.animation.Animation;
35 import android.view.animation.Animation.AnimationListener;
91 public void onAnimationStart(Animation animation) {
95 public void onAnimationRepeat(Animation animation) {
99 public void onAnimationEnd(Animation animation) {
240 Animation trans = new TranslateAnimation(0, dx, 0, dy);
257 Animation trans = new TranslateAnimation(-dx, 0, -dy, 0);
425 public void startAnimation(Animation anim1, Animation anim2) {
634 final Animation trans
[all...]
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h59 struct Animation { struct in class:android::BootAnimation
H A DBootAnimation.cpp406 Animation animation;
425 Animation::Part part;
454 Animation::Frame frame;
457 Animation::Part& part(animation.parts.editItemAt(j));
495 const Animation::Part& part(animation.parts[i]);
505 const Animation::Frame& frame(part.frames[j]);
565 const Animation::Frame& frame(part.frames[j]);
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java32 import android.view.animation.Animation;
38 import android.view.animation.Animation.AnimationListener;
679 static Animation makeOpenCloseAnimation(Context context, float startScale,
683 Animation.RELATIVE_TO_SELF, .5f, Animation.RELATIVE_TO_SELF, .5f);
694 static Animation makeFadeAnimation(Context context, float start, float end) {
701 Animation loadAnimation(Fragment fragment, int transit, boolean enter,
703 Animation animObj = fragment.onCreateAnimation(transit, enter,
710 Animation anim = AnimationUtils.loadAnimation(mActivity, fragment.mNextAnim);
877 Animation ani
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java27 import android.view.animation.Animation;
692 public Animation createForceHideEnterAnimation(boolean onWallpaper);

Completed in 254 milliseconds

12