HomeSort by relevance Sort by last modified time
    Searched refs:Animation (Results 76 - 100 of 293) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoPageBottomControls.java 24 import android.view.animation.AlphaAnimation;
25 import android.view.animation.Animation;
48 private Animation mContainerAnimIn = new AlphaAnimation(0f, 1f);
49 private Animation mContainerAnimOut = new AlphaAnimation(1f, 0f);
53 private static Animation getControlAnimForVisibility(boolean visible) {
54 Animation anim = visible ? new AlphaAnimation(0f, 1f)
  /frameworks/base/core/java/android/view/animation/
AnimationUtils.java 17 package android.view.animation;
45 * Returns the current animation time in milliseconds. This time should be used when invoking
46 * {@link Animation#setStartTime(long)}. Refer to {@link android.os.SystemClock} for more
50 * @return the current animation time in milliseconds
59 * Loads an {@link Animation} object from a resource
62 * @param id The resource id of the animation to load
63 * @return The animation object reference by the specified id
64 * @throws NotFoundException when the animation cannot be loaded
66 public static Animation loadAnimation(Context context, int id)
74 NotFoundException rnf = new NotFoundException("Can't load animation resource ID #0x"
    [all...]
Animation.java 17 package android.view.animation;
29 * Abstraction for an Animation that can be applied to Views, Surfaces, or
30 * other objects. See the {@link android.view.animation animation package
33 public abstract class Animation implements Cloneable {
35 * Repeat the animation indefinitely.
40 * When the animation reaches the end and the repeat count is INFINTE_REPEAT
41 * or a positive value, the animation restarts from the beginning.
46 * When the animation reaches the end and the repeat count is INFINTE_REPEAT
47 * or a positive value, the animation plays backward (and then forward again)
263 final Animation animation = (Animation) super.clone(); local
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
RotateAnimationTest.java 17 package android.view.animation.cts;
26 import android.view.animation.Animation;
27 import android.view.animation.LinearInterpolator;
28 import android.view.animation.RotateAnimation;
29 import android.view.animation.Transformation;
77 new RotateAnimation(0.6f, 0.6f, Animation.ABSOLUTE, 0.6f, Animation.ABSOLUTE, 0.6f);
79 new RotateAnimation(-0.6f, -0.6f, Animation.ABSOLUTE, -0.6f, Animation.ABSOLUTE, -0.6f)
    [all...]
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
LookupActivity.java 38 import android.view.animation.Animation;
39 import android.view.animation.AnimationUtils;
40 import android.view.animation.Animation.AnimationListener;
60 private Animation mSlideIn;
61 private Animation mSlideOut;
94 // Listen for the "in" animation so we make the progress bar visible
260 * hides the loading animation from the GUI thread before starting a
267 * {@link ProgressBar}. We'll only show it once the animation finishes
    [all...]
  /frameworks/base/core/java/android/widget/
ViewAnimator.java 27 import android.view.animation.Animation;
28 import android.view.animation.AnimationUtils;
45 Animation mInAnimation;
46 Animation mOutAnimation;
143 * optionally with the with the {@link #getOutAnimation() out animation} and
145 * {@link #getInAnimation() in animation}.
172 * with the {@link #getOutAnimation() out animation} and the specified child
173 * enters the screen with the {@link #getInAnimation() in animation}.
258 * Returns the current animation used to animate a View that enters the screen
    [all...]
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.h 300 void mapAnimationDelay(Animation*, CSSValue*);
301 void mapAnimationDirection(Animation*, CSSValue*);
302 void mapAnimationDuration(Animation*, CSSValue*);
303 void mapAnimationFillMode(Animation*, CSSValue*);
304 void mapAnimationIterationCount(Animation*, CSSValue*);
305 void mapAnimationName(Animation*, CSSValue*);
306 void mapAnimationPlayState(Animation*, CSSValue*);
307 void mapAnimationProperty(Animation*, CSSValue*);
308 void mapAnimationTimingFunction(Animation*, CSSValue*);
  /external/chromium/chrome/browser/ui/gtk/
hover_controller_gtk.cc 67 void HoverControllerGtk::AnimationProgressed(const ui::Animation* animation) {
71 // Ignore the hover animation if we are throbbing.
72 if (animation == &hover_animation_ && throb_animation_.is_animating())
76 animation->GetCurrentValue());
79 void HoverControllerGtk::AnimationEnded(const ui::Animation* animation) {
82 if (animation != &throb_animation_)
89 void HoverControllerGtk::AnimationCanceled(const ui::Animation* animation) {
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.h 97 const Animation* anim,
101 const Animation*,
106 const Animation*,
  /external/chromium/chrome/browser/chromeos/panels/
panel_scroller.h 12 #include "ui/base/animation/animation_delegate.h"
13 #include "ui/base/animation/slide_animation.h"
42 virtual void AnimationProgressed(const ui::Animation* animation);
  /external/chromium/chrome/browser/ui/gtk/infobars/
translate_infobar_base_gtk.h 10 #include "ui/base/animation/animation_delegate.h"
35 virtual void AnimationProgressed(const ui::Animation* animation);
  /external/chromium/chrome/browser/ui/views/frame/
contents_container.h 10 #include "ui/base/animation/animation_delegate.h"
61 virtual void AnimationProgressed(const ui::Animation* animation);
85 // Animation used to vary the opacity of active_overlay.
  /external/chromium/chrome/browser/ui/views/infobars/
translate_infobar_base.h 45 virtual void AnimationProgressed(const ui::Animation* animation);
  /frameworks/base/services/java/com/android/server/wm/
AppTransition.java 27 import android.view.animation.AlphaAnimation;
28 import android.view.animation.Animation;
29 import android.view.animation.AnimationSet;
30 import android.view.animation.AnimationUtils;
31 import android.view.animation.Interpolator;
32 import android.view.animation.ScaleAnimation;
80 /** No animation for transition. */
111 /** Fraction of animation at which the recents thumbnail becomes completely transparent */
284 Animation loadAnimation(WindowManager.LayoutParams lp, int animAttr)
    [all...]
AppWindowAnimator.java 12 import android.view.animation.Animation;
13 import android.view.animation.Transformation;
26 Animation animation; field in class:AppWindowAnimator
47 // Special surface for thumbnail animation.
53 Animation thumbnailAnimation;
59 static final Animation sDummyAnimation = new DummyAnimation();
67 public void setAnimation(Animation anim, int width, int height) {
68 if (WindowManagerService.localLOGV) Slog.v(TAG, "Setting animation in " + mAppToke
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
Animation.java 19 import android.view.animation.Interpolator;
23 // Animation calculates a value according to the current input time.
26 // animation. The duration is in milliseconds.
29 // 3. Each time we want to get an animation value, we call
30 // calculate(long currentTimeMillis) to ask the Animation to calculate it.
42 // The isActive() method returns true after the animation start() is called and
44 // animation.
46 // The start() method can be called again to restart the Animation.
48 abstract public class Animation {
  /external/replicaisland/src/com/replica/replicaisland/
MainMenuActivity.java 35 import android.view.animation.Animation;
36 import android.view.animation.AnimationUtils;
46 private Animation mButtonFlickerAnimation;
47 private Animation mFadeOutAnimation;
48 private Animation mAlternateFadeOutAnimation;
49 private Animation mFadeInAnimation;
311 Animation anim = AnimationUtils.loadAnimation(this, R.anim.button_slide);
317 Animation anim = AnimationUtils.loadAnimation(this, R.anim.button_slide);
377 protected class StartActivityAfterAnimation implements Animation.AnimationListener
    [all...]
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
ListViewItemAnimations.java 22 import android.animation.Animator;
23 import android.animation.AnimatorListenerAdapter;
24 import android.animation.ObjectAnimator;
32 import android.view.animation.AlphaAnimation;
33 import android.view.animation.Animation;
34 import android.view.animation.Animation.AnimationListener;
35 import android.view.animation.AnimationSet;
36 import android.view.animation.TranslateAnimation
    [all...]
  /external/chromium/chrome/browser/ui/views/download/
download_shelf_view.h 11 #include "ui/base/animation/animation_delegate.h"
55 virtual void AnimationProgressed(const ui::Animation* animation);
56 virtual void AnimationEnded(const ui::Animation* animation);
110 // Called when the "close shelf" animation ended.
129 // The animation for adding new items to the shelf.
132 // The show/hide animation for the shelf itself.
  /external/chromium/chrome/browser/ui/views/
dropdown_bar_host.h 11 #include "ui/base/animation/animation_delegate.h"
57 // Stops the animation.
81 virtual void AnimationProgressed(const ui::Animation* animation);
82 virtual void AnimationEnded(const ui::Animation* animation);
120 // Returns the animation offset.
150 // Returns the animation for the dropdown.
151 ui::SlideAnimation* animation() { function in class:DropdownBarHost
166 // The animation class to use when opening the Dropdown widget
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TranslateAnimationTest.java 3 import android.view.animation.Animation;
4 import android.view.animation.TranslateAnimation;
17 private TranslateAnimation animation; field in class:TranslateAnimationTest
22 animation = new TranslateAnimation(1, 2, 3, 4, 5, 6, 7, 8);
23 shadow = shadowOf(animation);
42 int defType = Animation.ABSOLUTE;
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
AndroidAnimation.cpp 26 #include "Animation.h"
45 const Animation* animation,
49 , m_duration(animation->duration())
50 , m_fillsBackwards(animation->fillsBackwards())
51 , m_fillsForwards(animation->fillsForwards())
52 , m_iterationCount(animation->iterationCount())
53 , m_direction(animation->direction())
54 , m_timingFunction(animation->timingFunction())
83 if (elapsedTime < 0) // animation not yet started
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ViewImage.java 41 import android.view.animation.AlphaAnimation;
42 import android.view.animation.Animation;
43 import android.view.animation.AnimationUtils;
96 // represents which style animation to use
98 private Animation [] mSlideShowInAnimation;
99 private Animation [] mSlideShowOutAnimation;
105 private final Animation mHideNextImageViewAnimation =
107 private final Animation mHidePrevImageViewAnimation =
109 private final Animation mShowNextImageViewAnimation
737 Animation animation = new AlphaAnimation(0F, 1F); local
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
ModePicker.java 29 import android.view.animation.Animation;
30 import android.view.animation.Animation.AnimationListener;
31 import android.view.animation.AnimationUtils;
68 private Animation mFadeIn, mFadeOut;
124 public void onAnimationEnd(Animation animation) {
130 public void onAnimationRepeat(Animation animation) {
    [all...]
  /packages/apps/Gallery2/src/com/android/camera/ui/
PieRenderer.java 33 import android.view.animation.Animation;
34 import android.view.animation.Animation.AnimationListener;
35 import android.view.animation.LinearInterpolator;
36 import android.view.animation.Transformation;
50 // These states are used to make sure the animation is run for at least some
62 private Animation.AnimationListener mEndAction = new EndAction();
311 public void onAnimationStart(Animation animation) {
    [all...]

Completed in 1473 milliseconds

1 2 34 5 6 7 8 91011>>