OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mDropAnim
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java
63
private ValueAnimator
mDropAnim
= null;
638
if (
mDropAnim
!= null)
mDropAnim
.cancel();
653
mDropAnim
= new ValueAnimator();
654
mDropAnim
.setInterpolator(interpolator);
655
mDropAnim
.setDuration(duration);
656
mDropAnim
.setFloatValues(0f, 1f);
657
mDropAnim
.addUpdateListener(updateCb);
658
mDropAnim
.addListener(new AnimatorListenerAdapter() {
675
mDropAnim
.start()
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/
DragLayer.java
61
private ValueAnimator
mDropAnim
= null;
727
if (
mDropAnim
!= null)
mDropAnim
.cancel();
742
mDropAnim
= new ValueAnimator();
743
mDropAnim
.setInterpolator(interpolator);
744
mDropAnim
.setDuration(duration);
745
mDropAnim
.setFloatValues(0f, 1f);
746
mDropAnim
.addUpdateListener(updateCb);
747
mDropAnim
.addListener(new AnimatorListenerAdapter() {
764
mDropAnim
.start()
[
all
...]
PagedView.java
[
all
...]
Completed in 247 milliseconds