OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:inanim
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/core/java/android/transition/
ChangeText.java
210
ValueAnimator outAnim = null,
inAnim
= null;
240
inAnim
= ValueAnimator.ofInt(0, 255);
241
inAnim
.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
249
inAnim
.addListener(new AnimatorListenerAdapter() {
257
if (outAnim != null &&
inAnim
!= null) {
259
((AnimatorSet) anim).playSequentially(outAnim,
inAnim
);
264
anim =
inAnim
;
/packages/apps/Browser/src/com/android/browser/
PhoneUi.java
307
AnimatorSet
inanim
= new AnimatorSet();
local
324
inanim
.playTogether(tx, ty, tr, tb, sx, title);
325
inanim
.setDuration(200);
334
set1.playSequentially(
inanim
, blend1);
/packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizeTabHost.java
282
ObjectAnimator
inAnim
= LauncherAnimUtils.ofFloat(mAppsCustomizePane, "alpha", 1f);
283
inAnim
.addListener(new AnimatorListenerAdapter() {
291
animSet.playTogether(outAnim,
inAnim
);
/packages/apps/Launcher3/src/com/android/launcher3/
AppsCustomizeTabHost.java
287
ObjectAnimator
inAnim
= LauncherAnimUtils.ofFloat(mAppsCustomizePane, "alpha", 1f);
288
inAnim
.addListener(new AnimatorListenerAdapter() {
296
animSet.playTogether(outAnim,
inAnim
);
Completed in 669 milliseconds