/frameworks/base/core/java/android/transition/ |
Crossfade.java | 211 ObjectAnimator anim1 = null; local 214 anim1 = ObjectAnimator.ofFloat(view, View.ALPHA, 0, 0, 1); 216 anim1 = ObjectAnimator.ofFloat(view, View.ALPHA, 0, 1); 235 if (anim1 != null) { 236 set.playTogether(anim1);
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
AnimationCloning.java | 80 ObjectAnimator anim1 = ObjectAnimator.ofFloat(balls.get(0), "y", local 82 ObjectAnimator anim2 = anim1.clone(); 84 anim1.addUpdateListener(this); 101 animation.playTogether(anim1, anim2, s1);
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
DocumentTimelineTest.cpp | 206 RefPtr<Animation> anim1 = Animation::create(element.get(), KeyframeAnimationEffect::create(KeyframeAnimationEffect::KeyframeVector()), timing); local 208 Player* player1 = timeline->play(anim1.get()); 239 RefPtr<Animation> anim1 = Animation::create(element.get(), KeyframeAnimationEffect::create(KeyframeAnimationEffect::KeyframeVector()), timingForwardFill); local 244 timeline->play(anim1.get());
|
/packages/apps/Browser/src/com/android/browser/ |
NavigationBarTablet.java | 273 Animator anim1 = ObjectAnimator.ofFloat(mNavButtons, View.TRANSLATION_X, 0, - awidth); local 278 mAnimation.playTogether(anim1, anim2, anim3); 298 Animator anim1 = ObjectAnimator.ofFloat(mNavButtons, local 305 combo.playTogether(anim1, anim2, anim3);
|
/frameworks/base/core/java/com/android/internal/widget/ |
SlidingTab.java | 424 * @param anim1 427 public void startAnimation(Animation anim1, Animation anim2) { 428 tab.startAnimation(anim1); [all...] |