Home
last modified time | relevance | path

Searched refs:Animation (Results 1 – 25 of 59) sorted by relevance

123

/frameworks/base/core/java/android/view/animation/
DAnimationSet.java52 public class AnimationSet extends Animation {
66 private ArrayList<Animation> mAnimations = new ArrayList<Animation>();
129 animation.mAnimations = new ArrayList<Animation>(); in clone()
132 final ArrayList<Animation> animations = mAnimations; in clone()
186 final ArrayList<Animation> animations = mAnimations; in hasAlpha()
218 public void addAnimation(Animation a) { in addAnimation()
256 final ArrayList<Animation> animations = mAnimations; in setStartTime()
259 Animation a = animations.get(i); in setStartTime()
269 final ArrayList<Animation> animations = mAnimations; in getStartTime()
272 Animation a = animations.get(i); in getStartTime()
[all …]
DLayoutAnimationController.java76 protected Animation mAnimation;
106 Animation.Description d = Animation.Description.parseValue( in LayoutAnimationController()
131 public LayoutAnimationController(Animation animation) { in LayoutAnimationController()
142 public LayoutAnimationController(Animation animation, float delay) { in LayoutAnimationController()
198 public void setAnimation(Animation animation) { in setAnimation()
212 public Animation getAnimation() { in getAnimation()
320 public final Animation getAnimationForView(View view) { in getAnimationForView()
325 final Animation animation = mAnimation.clone(); in getAnimationForView()
DAnimationUtils.java66 public static Animation loadAnimation(Context context, int id) in loadAnimation()
88 private static Animation createAnimationFromXml(Context c, XmlPullParser parser) in createAnimationFromXml()
94 private static Animation createAnimationFromXml(Context c, XmlPullParser parser, in createAnimationFromXml()
97 Animation anim = null; in createAnimationFromXml()
201 public static Animation makeInAnimation(Context c, boolean fromLeft) { in makeInAnimation()
202 Animation a; in makeInAnimation()
222 public static Animation makeOutAnimation(Context c, boolean toRight) { in makeOutAnimation()
223 Animation a; in makeOutAnimation()
243 public static Animation makeInChildBottomAnimation(Context c) { in makeInChildBottomAnimation()
244 Animation a; in makeInChildBottomAnimation()
DAnimation.java32 public abstract class Animation implements Cloneable { class
214 public Animation() { in Animation() method in Animation
225 public Animation(Context context, AttributeSet attrs) { in Animation() method in Animation
226 … TypedArray a = context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.Animation); in Animation()
256 protected Animation clone() throws CloneNotSupportedException { in clone()
257 final Animation animation = (Animation) super.clone(); in clone()
1086 void onAnimationStart(Animation animation);
1094 void onAnimationEnd(Animation animation);
1101 void onAnimationRepeat(Animation animation);
DGridLayoutAnimationController.java118 Animation.Description d = Animation.Description.parseValue( in GridLayoutAnimationController()
121 d = Animation.Description.parseValue( in GridLayoutAnimationController()
139 public GridLayoutAnimationController(Animation animation) { in GridLayoutAnimationController()
151 public GridLayoutAnimationController(Animation animation, float columnDelay, float rowDelay) { in GridLayoutAnimationController()
DAlphaAnimation.java29 public class AlphaAnimation extends Animation {
DRotateAnimation.java30 public class RotateAnimation extends Animation {
/frameworks/base/libs/rs/
DrsAnimation.h28 class Animation : public ObjectBase {
30 ~Animation();
32 static Animation * create(Context *rsc,
41 static Animation *createFromStream(Context *rsc, IStream *stream);
44 Animation(Context *rsc);
DrsAnimation.cpp24 void Animation::serialize(OStream *stream) const { in serialize()
27 Animation *Animation::createFromStream(Context *rsc, IStream *stream) { in createFromStream()
130Animation *a = NULL;//Animation::create(rsc, inValues, outValues, valueCount, interp, pre, post); in rsi_AnimationCreate()
/frameworks/base/core/tests/coretests/src/android/widget/listview/
DListWithDisappearingItemBug.java26 import android.view.animation.Animation;
63 Animation animation = new AlphaAnimation(0.0f, 1.0f); in onCreate()
68 Animation.RELATIVE_TO_SELF, 0.0f,Animation.RELATIVE_TO_SELF, 0.0f, in onCreate()
69 Animation.RELATIVE_TO_SELF, -1.0f,Animation.RELATIVE_TO_SELF, 0.0f in onCreate()
/frameworks/base/core/java/android/widget/
DViewAnimator.java25 import android.view.animation.Animation;
43 Animation mInAnimation;
44 Animation mOutAnimation;
259 public Animation getInAnimation() { in getInAnimation()
271 public void setInAnimation(Animation inAnimation) { in setInAnimation()
283 public Animation getOutAnimation() { in getOutAnimation()
295 public void setOutAnimation(Animation outAnimation) { in setOutAnimation()
/frameworks/base/docs/html/guide/topics/graphics/
Danimation.jd1 page.title=Animation
10 Animation</a></li>
11 <li><a href="{@docRoot}guide/topics/graphics/view-animation.html">View Animation</a></li>
12 … <li><a href="{@docRoot}guide/topics/graphics/drawable-animation.html">Drawable Animation</a></li>
49 Animation</a></strong></dt>
55 Animation</a></strong></dt>
56 <dd>View Animation is the older system and can only be used for Views. It is relatively easy to
61 Animation</a></strong></dt>
Dview-animation.jd1 page.title=View Animation
2 parent.title=Animation
24 android.view.animation.Animation} subclasses.)</p>
99 Animation hyperspaceJumpAnimation = AnimationUtils.loadAnimation(this, R.anim.hyperspace_jump);
104 animation with <code>{@link android.view.animation.Animation#setStartTime(long)
105 Animation.setStartTime()}</code>, then assign the animation to the View with <code>{@link
106 android.view.View#setAnimation(android.view.animation.Animation) View.setAnimation()}</code>.</p>
109 "{@docRoot}guide/topics/resources/animation-resource.html">Animation Resources</a>.</p>
Ddrawable-animation.jd1 page.title=Drawable Animation
2 parent.title=Animation
66 "{@docRoot}guide/topics/resources/animation-resource.html">Animation Resources</a>.</p>
/frameworks/base/core/java/com/android/internal/widget/
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); in hide()
257 Animation trans = new TranslateAnimation(-dx, 0, -dy, 0); in show()
425 public void startAnimation(Animation anim1, Animation anim2) { in startAnimation()
634 final Animation trans1;
635 final Animation trans2;
[all …]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DBitmapsActivity.java31 import android.view.animation.Animation;
49 a.setRepeatCount(Animation.INFINITE); in onCreate()
50 a.setRepeatMode(Animation.REVERSE); in onCreate()
DAlphaLayersActivity.java28 import android.view.animation.Animation;
47 a.setRepeatCount(Animation.INFINITE); in onCreate()
48 a.setRepeatMode(Animation.REVERSE); in onCreate()
DMarqueeActivity.java23 import android.view.animation.Animation;
60 Animation animation = AnimationUtils.loadAnimation(text2.getContext(), in onCreate()
/frameworks/base/cmds/bootanimation/
DBootAnimation.cpp379 Animation animation; in movie()
397 Animation::Part part; in movie()
424 Animation::Frame frame; in movie()
427 Animation::Part& part(animation.parts.editItemAt(j)); in movie()
465 const Animation::Part& part(animation.parts[i]); in movie()
471 const Animation::Frame& frame(part.frames[j]); in movie()
515 const Animation::Frame& frame(part.frames[j]); in movie()
DBootAnimation.h60 struct Animation { struct
/frameworks/base/services/java/com/android/server/wm/
DAppWindowToken.java30 import android.view.animation.Animation;
87 Animation animation;
115 public void setAnimation(Animation anim) { in setAnimation()
124 if (zorder == Animation.ZORDER_TOP) { in setAnimation()
126 } else if (zorder == Animation.ZORDER_BOTTOM) { in setAnimation()
DScreenRotationAnimation.java31 import android.view.animation.Animation;
52 Animation mExitAnimation;
54 Animation mEnterAnimation;
/frameworks/support/v4/java/android/support/v4/app/
DFragmentManager.java32 import android.view.animation.Animation;
38 import android.view.animation.Animation.AnimationListener;
677 static Animation makeOpenCloseAnimation(Context context, float startScale, in makeOpenCloseAnimation()
681 Animation.RELATIVE_TO_SELF, .5f, Animation.RELATIVE_TO_SELF, .5f); in makeOpenCloseAnimation()
692 static Animation makeFadeAnimation(Context context, float start, float end) { in makeFadeAnimation()
699 Animation loadAnimation(Fragment fragment, int transit, boolean enter, in loadAnimation()
701 Animation animObj = fragment.onCreateAnimation(transit, enter, in loadAnimation()
708 Animation anim = AnimationUtils.loadAnimation(mActivity, fragment.mNextAnim); in loadAnimation()
850 Animation anim = loadAnimation(f, transit, true, in moveToState()
945 Animation anim = null; in moveToState()
[all …]
/frameworks/base/docs/html/guide/topics/resources/
Danimation-resource.jd1 page.title=Animation Resources
10 <li><a href="#Property">Property Animation</a></li>
11 <li><a href="#View">View Animation</a>
20 <li><a href="{@docRoot}guide/topics/graphics/view-animation.html">View Animation</a></li>
21 <li><a href="{@docRoot}guide/topics/graphics/animation.html">Property Animation</a></li>
30 <dt><a href="#Property">Property Animation</a></dt>
33 <dt><a href="#View">View Animation</a></dt>
38 with an {@link android.view.animation.Animation}</li>
46 <h2 id="Property">Property Animation</h2>
337 <li><a href="{@docRoot}guide/topics/graphics/animation.html">Property Animation</a></li>
[all …]
/frameworks/base/core/java/android/view/
DWindowManagerPolicy.java27 import android.view.animation.Animation;
637 public Animation createForceHideEnterAnimation(); in createForceHideEnterAnimation()

123