OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:yAnim
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/tests/coretests/src/android/animation/
AnimatorSetEventsTest.java
33
ObjectAnimator
yAnim
= ObjectAnimator.ofFloat(this, "translationY", 0, 100);
39
((AnimatorSet)mAnimator).playSequentially(xAnim,
yAnim
);
55
yAnim
.setStartDelay(500);
57
animSet.playSequentially(xAnim,
yAnim
);
/development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimatorEvents.java
120
ObjectAnimator
yAnim
= ObjectAnimator.ofFloat(ball, "y",
122
yAnim
.setRepeatCount(0);
123
yAnim
.setRepeatMode(ValueAnimator.REVERSE);
124
yAnim
.setInterpolator(new AccelerateInterpolator(2f));
125
yAnim
.addUpdateListener(this);
126
yAnim
.addListener(this);
141
((AnimatorSet) animation).playTogether(
yAnim
, xAnim);
Completed in 354 milliseconds