OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:outAnim
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/java/android/transition/
ChangeText.java
210
ValueAnimator
outAnim
= null, inAnim = null;
213
outAnim
= ValueAnimator.ofInt(255, 0);
214
outAnim
.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
222
outAnim
.addListener(new AnimatorListenerAdapter() {
257
if (
outAnim
!= null && inAnim != null) {
259
((AnimatorSet) anim).playSequentially(
outAnim
, inAnim);
260
} else if (
outAnim
!= null) {
261
anim =
outAnim
;
/packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizeTabHost.java
265
ObjectAnimator
outAnim
= LauncherAnimUtils.ofFloat(mAnimationBuffer, "alpha", 0f);
266
outAnim
.addListener(new AnimatorListenerAdapter() {
291
animSet.playTogether(
outAnim
, inAnim);
Completed in 56 milliseconds