Home | History | Annotate | Download | only in phone

Lines Matching defs:targetView

133                 View targetView = getIconAtPosition(x, y);
134 if (targetView == null || (mTargetedView != null && mTargetedView != targetView)) {
143 startSwiping(targetView);
189 private void startSwiping(View targetView) {
190 mCallback.onSwipingStarted(targetView == mRightIcon);
192 mTargetedView = targetView;
247 final KeyguardAffordanceView targetView = right ? mRightIcon : mLeftIcon;
272 mTargetedView = targetView;
296 final KeyguardAffordanceView targetView = right ? mRightIcon : mLeftIcon;
297 ValueAnimator animator = ValueAnimator.ofFloat(targetView.getCircleRadius(), radius);
302 targetView.setCircleRadiusWithoutAnimation(newRadius);
305 updateIconsFromTranslation(targetView);
372 KeyguardAffordanceView targetView = right ? mRightIcon : mLeftIcon;
373 targetView.finishAnimation(velocity, mAnimationEndRunnable);
381 KeyguardAffordanceView targetView = translation > 0 ? mLeftIcon : mRightIcon;
394 updateIcon(targetView, radius, alpha + fadeOutAlpha * targetView.getRestingAlpha(),
397 updateIcon(targetView, 0.0f, fadeOutAlpha * targetView.getRestingAlpha(),
409 targetView) {
417 // We interpolate the alpha of the targetView to 1
418 KeyguardAffordanceView otherView = targetView == mRightIcon ? mLeftIcon : mRightIcon;
419 updateIconAlpha(targetView, alpha + fadeOutAlpha * targetView.getRestingAlpha(), false);
529 KeyguardAffordanceView targetView = left ? mLeftIcon : mRightIcon;
531 startSwiping(targetView);
535 if (targetView.getVisibility() != View.VISIBLE) {
549 targetView.instantFinishAnimation();