OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fadeAnim
(Results
1 - 2
of
2
) sorted by null
/development/samples/ApiDemos/src/com/example/android/apis/animation/
BouncingBalls.java
132
ValueAnimator
fadeAnim
= ObjectAnimator.ofFloat(newBall, "alpha", 1f, 0f);
133
fadeAnim
.setDuration(250);
134
fadeAnim
.addListener(new AnimatorListenerAdapter() {
144
animatorSet.play(bouncer).before(
fadeAnim
);
/cts/tests/tests/animation/src/android/animation/cts/
AnimationActivity.java
223
ValueAnimator
fadeAnim
= ObjectAnimator.ofFloat(newBall, "alpha", 1f, 0f);
224
fadeAnim
.setDuration(250);
225
fadeAnim
.addListener(new AnimatorListenerAdapter() {
234
animatorSet.play(bouncer).before(
fadeAnim
);
Completed in 393 milliseconds