Lines Matching defs:AnimationSet

32  * If AnimationSet sets any properties that its children also set
33 * (for example, duration or fillBefore), the values of AnimationSet
36 * <p>The way that AnimationSet inherits behavior from Animation is important to
37 * understand. Some of the Animation attributes applied to AnimationSet affect the
38 * AnimationSet itself, some are pushed down to the children, and some are ignored,
42 * on an AnimationSet object, will be pushed down to all child animations.</li>
43 * <li>repeatCount, fillEnabled: These properties are ignored for AnimationSet.</li>
44 * <li>startOffset, shareInterpolator: These properties apply to the AnimationSet itself.</li>
48 * release, the values set in XML were ignored for AnimationSet). That is, calling
49 * <code>setDuration(500)</code> on an AnimationSet has the same effect as declaring
50 * <code>android:duration="500"</code> in an XML resource for an AnimationSet object.</p>
52 public class AnimationSet extends Animation {
75 * Constructor used when an AnimationSet is loaded from a resource.
80 public AnimationSet(Context context, AttributeSet attrs) {
84 context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.AnimationSet);
114 * Constructor to use when building an AnimationSet from code
117 * should use the interpolator associated with this AnimationSet.
120 public AnimationSet(boolean shareInterpolator) {
126 protected AnimationSet clone() throws CloneNotSupportedException {
127 final AnimationSet animation = (AnimationSet) super.clone();
294 * The duration of an AnimationSet is defined to be the
508 * @return All the child animations in this AnimationSet. Note that