HomeSort by relevance Sort by last modified time
    Searched refs:animView (Results 1 - 14 of 14) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SwipeHelper.java 172 private void updateSwipeProgressFromOffset(View animView, boolean dismissable) {
173 float swipeProgress = getSwipeProgressForOffset(animView);
174 if (!mCallback.updateSwipeProgress(animView, dismissable, swipeProgress)) {
178 animView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
180 animView.setLayerType(View.LAYER_TYPE_NONE, null);
182 animView.setAlpha(getSwipeProgressForOffset(animView));
185 invalidateGlobalRegion(animView);
311 final View animView = mCallback.getChildContentView(view);
316 || (velocity == 0 && getTranslation(animView) < 0
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/list/
SwipeHelper.java 274 final View animView = mCallback.getChildContentView(view);
276 float newPos = determinePos(animView, velocity);
277 int duration = determineDuration(animView, newPos, velocity);
279 animView.setLayerType(View.LAYER_TYPE_HARDWARE, null);
280 ObjectAnimator anim = createDismissAnimation(animView, newPos, duration);
285 animView.setLayerType(View.LAYER_TYPE_NONE, null);
292 animView.setAlpha(getAlphaForOffset(animView));
294 invalidateGlobalRegion(animView);
300 private int determineDuration(View animView, float newPos, float velocity)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SwipeHelper.java 267 final View animView = view.getSwipeableView().getView();
269 float newPos = determinePos(animView, velocity);
270 int duration = determineDuration(animView, newPos, velocity);
272 Utils.enableHardwareLayer(animView);
273 ObjectAnimator anim = createDismissAnimation(animView, newPos, duration);
278 animView.setLayerType(View.LAYER_TYPE_NONE, null);
285 animView.setAlpha(getAlphaForOffset(animView));
287 invalidateGlobalRegion(animView);
293 private static int determineDuration(View animView, float newPos, float velocity)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationSeeking.java 60 final MyAnimationView animView = new MyAnimationView(this);
61 container.addView(animView);
66 animView.startAnimation();
82 if (animView.getHeight() != 0) {
83 animView.seek(progress);
ReversingAnimation.java 48 final MyAnimationView animView = new MyAnimationView(this);
49 container.addView(animView);
54 animView.startAnimation();
61 animView.reverseAnimation();
AnimatorEvents.java 58 final MyAnimationView animView = new MyAnimationView(this);
59 container.addView(animView);
83 animView.startAnimation(endCB.isChecked());
91 animView.cancelAnimation();
99 animView.endAnimation();
CustomEvaluator.java 48 final MyAnimationView animView = new MyAnimationView(this);
49 container.addView(animView);
54 animView.startAnimation();
AnimationCloning.java 49 final MyAnimationView animView = new MyAnimationView(this);
50 container.addView(animView);
56 animView.startAnimation();
AnimationLoading.java 57 final MyAnimationView animView = new MyAnimationView(this);
58 container.addView(animView);
63 animView.startAnimation();
MultiPropertyAnimation.java 55 final MyAnimationView animView = new MyAnimationView(this);
56 container.addView(animView);
62 animView.startAnimation();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsHorizontalScrollView.java 229 public void onChildSnappedBack(View animView) {
233 public boolean updateSwipeProgress(View animView, boolean dismissable, float swipeProgress) {
RecentsVerticalScrollView.java 237 public void onChildSnappedBack(View animView) {
241 public boolean updateSwipeProgress(View animView, boolean dismissable, float swipeProgress) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
HeadsUpNotificationView.java 339 public void onChildSnappedBack(View animView) {
343 public boolean updateSwipeProgress(View animView, boolean dismissable, float swipeProgress) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
NotificationStackScrollLayout.java 531 public void onChildSnappedBack(View animView) {
532 mAmbientState.onDragFinished(animView);
533 if (!mDragAnimPendingChildren.contains(animView)) {
535 mSnappedBackChildren.add(animView);
541 mDragAnimPendingChildren.remove(animView);
546 public boolean updateSwipeProgress(View animView, boolean dismissable, float swipeProgress) {
    [all...]

Completed in 175 milliseconds