Home
last modified time | relevance | path

Searched refs:ofFloat (Results 1 – 25 of 90) sorted by relevance

1234

/packages/apps/Nfc/src/com/android/nfc/beam/
DSendUi.java244 PropertyValuesHolder preX = PropertyValuesHolder.ofFloat("scaleX", PRE_SCREENSHOT_SCALE); in SendUi()
245 PropertyValuesHolder preY = PropertyValuesHolder.ofFloat("scaleY", PRE_SCREENSHOT_SCALE); in SendUi()
251 PropertyValuesHolder postX = PropertyValuesHolder.ofFloat("scaleX", SEND_SCREENSHOT_SCALE); in SendUi()
252 PropertyValuesHolder postY = PropertyValuesHolder.ofFloat("scaleY", SEND_SCREENSHOT_SCALE); in SendUi()
253 PropertyValuesHolder alphaDown = PropertyValuesHolder.ofFloat("alpha", in SendUi()
266 … PropertyValuesHolder scaleUpX = PropertyValuesHolder.ofFloat("scaleX", SCALE_UP_SCREENSHOT_SCALE); in SendUi()
267 … PropertyValuesHolder scaleUpY = PropertyValuesHolder.ofFloat("scaleY", SCALE_UP_SCREENSHOT_SCALE); in SendUi()
274 PropertyValuesHolder fadeIn = PropertyValuesHolder.ofFloat("alpha", 1.0f); in SendUi()
281 PropertyValuesHolder alphaUp = PropertyValuesHolder.ofFloat("alpha", TEXT_HINT_ALPHA_RANGE); in SendUi()
287 alphaDown = PropertyValuesHolder.ofFloat("alpha", BLACK_LAYER_ALPHA_DOWN_RANGE); in SendUi()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/
DFocusIndicatorView.java121 PropertyValuesHolder.ofFloat(View.ALPHA, 1), in onFocusChange()
122 PropertyValuesHolder.ofFloat(View.TRANSLATION_X, mTargetState.x), in onFocusChange()
123 PropertyValuesHolder.ofFloat(View.TRANSLATION_Y, mTargetState.y), in onFocusChange()
124 PropertyValuesHolder.ofFloat(View.SCALE_X, mTargetState.scaleX), in onFocusChange()
125 PropertyValuesHolder.ofFloat(View.SCALE_Y, mTargetState.scaleY)); in onFocusChange()
129 PropertyValuesHolder.ofFloat(View.ALPHA, 1)); in onFocusChange()
137 PropertyValuesHolder.ofFloat(View.ALPHA, 0)); in onFocusChange()
DLauncherStateTransitionAnimation.java260 PropertyValuesHolder.ofFloat("alpha", revealViewToAlpha, 1f); in startAnimationToOverlay()
262 PropertyValuesHolder.ofFloat("translationY", revealViewToYDrift, 0); in startAnimationToOverlay()
264 PropertyValuesHolder.ofFloat("translationX", revealViewToXDrift, 0); in startAnimationToOverlay()
281 ObjectAnimator pageDrift = ObjectAnimator.ofFloat(contentView, "translationY", in startAnimationToOverlay()
288 ObjectAnimator itemsAlpha = ObjectAnimator.ofFloat(contentView, "alpha", 0f, 1f); in startAnimationToOverlay()
403 ValueAnimator updateAnimator = ValueAnimator.ofFloat(0, 1); in dispatchOnLauncherTransitionStepAnim()
558 ObjectAnimator panelDriftY = ObjectAnimator.ofFloat(revealView, "translationY", in startAnimationToWorkspaceFromOverlay()
565 ObjectAnimator panelDriftX = ObjectAnimator.ofFloat(revealView, "translationX", in startAnimationToWorkspaceFromOverlay()
576 ObjectAnimator panelAlpha = ObjectAnimator.ofFloat(revealView, "alpha", in startAnimationToWorkspaceFromOverlay()
588 ObjectAnimator pageDrift = ObjectAnimator.ofFloat(contentView, "translationY", in startAnimationToWorkspaceFromOverlay()
[all …]
DFolder.java470 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 1); in animateOpen()
471 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1.0f); in animateOpen()
472 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1.0f); in animateOpen()
497 PropertyValuesHolder tx = PropertyValuesHolder.ofFloat("translationX", transX, 0); in animateOpen()
498 PropertyValuesHolder ty = PropertyValuesHolder.ofFloat("translationY", transY, 0); in animateOpen()
515 Animator iconsAlpha = ObjectAnimator.ofFloat(mContentWrapper, "alpha", 0f, 1f); in animateOpen()
521 Animator textAlpha = ObjectAnimator.ofFloat(mFooter, "alpha", 0f, 1f); in animateOpen()
640 PropertyValuesHolder alpha = PropertyValuesHolder.ofFloat("alpha", 0); in animateClosed()
641 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 0.9f); in animateClosed()
642 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 0.9f); in animateClosed()
DLauncherClings.java162 anim = LauncherAnimUtils.ofFloat(content, "translationY", 0); in showLongPressCling()
166 PropertyValuesHolder scaleX = PropertyValuesHolder.ofFloat("scaleX", 1); in showLongPressCling()
167 PropertyValuesHolder scaleY = PropertyValuesHolder.ofFloat("scaleY", 1); in showLongPressCling()
/packages/apps/Camera2/src/com/android/camera/
DAnimationManager.java59 ObjectAnimator slide = ObjectAnimator.ofFloat(view, "translationX", 0f, slideDistance) in startCaptureAnimation()
63 ObjectAnimator translateY = ObjectAnimator.ofFloat(view, "translationY", in startCaptureAnimation()
90 ObjectAnimator.ofFloat(view, "scaleX", scale, 1f) in startCaptureAnimation()
92 ObjectAnimator.ofFloat(view, "scaleY", scale, 1f) in startCaptureAnimation()
94 ObjectAnimator.ofFloat(view, "translationX", in startCaptureAnimation()
140 mFlashAnim = ObjectAnimator.ofFloat(flashOverlay, "alpha", in startFlashAnimation()
/packages/apps/Calculator/src/com/android/calculator2/
DCalculator.java288 ObjectAnimator.ofFloat(textView, View.SCALE_X, textScale, 1.0f), in onTextSizeChanged()
289 ObjectAnimator.ofFloat(textView, View.SCALE_Y, textScale, 1.0f), in onTextSizeChanged()
290 ObjectAnimator.ofFloat(textView, View.TRANSLATION_X, translationX, 0.0f), in onTextSizeChanged()
291 ObjectAnimator.ofFloat(textView, View.TRANSLATION_Y, translationY, 0.0f)); in onTextSizeChanged()
347 final Animator alphaAnimator = ObjectAnimator.ofFloat(revealView, View.ALPHA, 0.0f); in reveal()
426 ObjectAnimator.ofFloat(mResultEditText, View.SCALE_X, resultScale), in onResult()
427 ObjectAnimator.ofFloat(mResultEditText, View.SCALE_Y, resultScale), in onResult()
428 ObjectAnimator.ofFloat(mResultEditText, View.TRANSLATION_X, resultTranslationX), in onResult()
429 ObjectAnimator.ofFloat(mResultEditText, View.TRANSLATION_Y, resultTranslationY), in onResult()
430 ObjectAnimator.ofFloat(mFormulaEditText, View.TRANSLATION_Y, formulaTranslationY)); in onResult()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DKeyPreviewDrawParams.java150 final ObjectAnimator scaleXAnimator = ObjectAnimator.ofFloat( in createShowUpAnimator()
153 final ObjectAnimator scaleYAnimator = ObjectAnimator.ofFloat( in createShowUpAnimator()
171 final ObjectAnimator scaleXAnimator = ObjectAnimator.ofFloat( in createDismissAnimator()
173 final ObjectAnimator scaleYAnimator = ObjectAnimator.ofFloat( in createDismissAnimator()
/packages/apps/DeskClock/src/com/android/deskclock/
DUtils.java255 ObjectAnimator.ofFloat(mSaverView, "alpha", 0f, 1f) in run()
260 Animator xMove = ObjectAnimator.ofFloat(mSaverView, in run()
262 Animator yMove = ObjectAnimator.ofFloat(mSaverView, in run()
265 Animator xShrink = ObjectAnimator.ofFloat(mSaverView, "scaleX", 1f, 0.85f); in run()
266 Animator xGrow = ObjectAnimator.ofFloat(mSaverView, "scaleX", 0.85f, 1f); in run()
268 Animator yShrink = ObjectAnimator.ofFloat(mSaverView, "scaleY", 1f, 0.85f); in run()
269 Animator yGrow = ObjectAnimator.ofFloat(mSaverView, "scaleY", 0.85f, 1f); in run()
273 Animator fadeout = ObjectAnimator.ofFloat(mSaverView, "alpha", 1f, 0f); in run()
274 Animator fadein = ObjectAnimator.ofFloat(mSaverView, "alpha", 0f, 1f); in run()
DAnimatorUtils.java143 PropertyValuesHolder.ofFloat(View.SCALE_X, values), in getScaleAnimator()
144 PropertyValuesHolder.ofFloat(View.SCALE_Y, values)); in getScaleAnimator()
/packages/apps/Launcher2/src/com/android/launcher2/
DSearchDropTargetBar.java113 … mDropTargetBarAnim = ObjectAnimator.ofFloat(mDropTargetBar, "translationY", -mBarHeight, 0f); in onFinishInflate()
114 … mQSBSearchBarAnim = ObjectAnimator.ofFloat(mQSBSearchBar, "translationY", 0f, -mBarHeight); in onFinishInflate()
117 mDropTargetBarAnim = ObjectAnimator.ofFloat(mDropTargetBar, "alpha", 0f, 1f); in onFinishInflate()
118 mQSBSearchBarAnim = ObjectAnimator.ofFloat(mQSBSearchBar, "alpha", 1f, 0f); in onFinishInflate()
DLauncherAnimUtils.java93 public static ValueAnimator ofFloat(View target, float... values) { in ofFloat() method in LauncherAnimUtils
100 public static ObjectAnimator ofFloat(View target, String propertyName, float... values) { in ofFloat() method in LauncherAnimUtils
/packages/apps/Camera2/src/com/android/camera/widget/
DModeOptions.java248 ValueAnimator.ofFloat(mAnimateFrom.width()/2.0f, in setupAnimators()
267 final ValueAnimator alphaAnimator = ValueAnimator.ofFloat(0.0f, 1.0f); in setupAnimators()
295 ValueAnimator.ofFloat(deltaX*(childCount-i), 0.0f); in setupAnimators()
323 ValueAnimator.ofFloat(fullSize-mAnimateFrom.width()/2.0f, in setupAnimators()
347 final ValueAnimator alphaAnimator = ValueAnimator.ofFloat(1.0f, 0.0f); in setupAnimators()
DPeekView.java107 ValueAnimator peekAnimateIn = ValueAnimator.ofFloat(0f, ROTATE_ANGLE); in startPeekAnimation()
108 ValueAnimator peekAnimateStay = ValueAnimator.ofFloat(ROTATE_ANGLE, ROTATE_ANGLE); in startPeekAnimation()
109 ValueAnimator peekAnimateOut = ValueAnimator.ofFloat(ROTATE_ANGLE, 0f); in startPeekAnimation()
DRoundedThumbnailView.java205 final ValueAnimator hitStateAnimator = ValueAnimator.ofFloat(
502 ValueAnimator stretchAnimator = ValueAnimator.ofFloat( in runPendingRequestAnimation()
521 ValueAnimator shrinkAnimator = ValueAnimator.ofFloat( in runPendingRequestAnimation()
557 ValueAnimator.ofFloat(mRippleRingDiameterBegin, mRippleRingDiameterEnd); in runPendingRequestAnimation()
/packages/apps/Contacts/src/com/android/contacts/editor/
DEditorAnimator.java59 ObjectAnimator.ofFloat(victim, View.ALPHA, 1.0f, 0.0f); in removeEditorView()
107 final ObjectAnimator fadeInAnimator = ObjectAnimator.ofFloat( in slideAndFadeIn()
137 final ObjectAnimator fadeInAnimator = ObjectAnimator.ofFloat( in showFieldFooter()
207 ObjectAnimator.ofFloat(child, View.TRANSLATION_Y, fromY, toY); in translateViews()
/packages/apps/DeskClock/src/com/android/deskclock/alarms/
DAlarmActivity.java224 PropertyValuesHolder.ofFloat(CircleView.RADIUS, 0.0f, pulseView.getRadius()), in onCreate()
527 PropertyValuesHolder.ofFloat(View.SCALE_X, BUTTON_SCALE_DEFAULT, 1.0f), in getButtonAnimator()
528 PropertyValuesHolder.ofFloat(View.SCALE_Y, BUTTON_SCALE_DEFAULT, 1.0f), in getButtonAnimator()
537 final ValueAnimator bounceAnimator = ObjectAnimator.ofFloat(mAlarmButton, in getAlarmBounceAnimator()
547 ObjectAnimator.ofFloat(mHintView, View.ALPHA, 0.0f, 1.0f).start(); in getAlarmBounceAnimator()
579 final Animator revealAnimator = ObjectAnimator.ofFloat( in getAlertAnimator()
599 final ValueAnimator fadeAnimator = ObjectAnimator.ofFloat(revealView, View.ALPHA, 0.0f); in getAlertAnimator()
/packages/apps/TV/src/com/android/tv/dialog/
DPinDialogFragment.java463 ObjectAnimator.ofFloat(mNumberViews[CURRENT_NUMBER_VIEW_INDEX - 1],
465 ObjectAnimator.ofFloat(mNumberViews[CURRENT_NUMBER_VIEW_INDEX],
467 ObjectAnimator.ofFloat(mNumberViews[CURRENT_NUMBER_VIEW_INDEX + 1],
469 ObjectAnimator.ofFloat(mBackgroundView, "alpha", 0f, 1f));
483 ObjectAnimator.ofFloat(mNumberViews[CURRENT_NUMBER_VIEW_INDEX - 1],
485 ObjectAnimator.ofFloat(mNumberViews[CURRENT_NUMBER_VIEW_INDEX + 1],
487 ObjectAnimator.ofFloat(mBackgroundView, "alpha", 1f, 0f));
/packages/apps/ExactCalculator/src/com/android/calculator2/
DCalculator.java617 ObjectAnimator.ofFloat(textView, View.SCALE_X, textScale, 1.0f), in onTextSizeChanged()
618 ObjectAnimator.ofFloat(textView, View.SCALE_Y, textScale, 1.0f), in onTextSizeChanged()
619 ObjectAnimator.ofFloat(textView, View.TRANSLATION_X, translationX, 0.0f), in onTextSizeChanged()
620 ObjectAnimator.ofFloat(textView, View.TRANSLATION_Y, translationY, 0.0f)); in onTextSizeChanged()
711 final Animator alphaAnimator = ObjectAnimator.ofFloat(revealView, View.ALPHA, 0.0f); in reveal()
814 PropertyValuesHolder.ofFloat(View.SCALE_X, resultScale), in onResult()
815 PropertyValuesHolder.ofFloat(View.SCALE_Y, resultScale), in onResult()
816 PropertyValuesHolder.ofFloat(View.TRANSLATION_Y, resultTranslationY)), in onResult()
818 ObjectAnimator.ofFloat(mFormulaText, View.TRANSLATION_Y, formulaTranslationY)); in onResult()
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
DConversationFastScroller.java215 ObjectAnimator trackSlide = ObjectAnimator.ofFloat(mTrackImageView, View.TRANSLATION_X, 0); in show()
216 ObjectAnimator thumbSlide = ObjectAnimator.ofFloat(mThumbImageView, View.TRANSLATION_X, 0); in show()
242 ObjectAnimator trackSlide = ObjectAnimator.ofFloat(mTrackImageView, View.TRANSLATION_X, in hide()
244 ObjectAnimator thumbSlide = ObjectAnimator.ofFloat(mThumbImageView, View.TRANSLATION_X, in hide()
266 mHidePreviewAnimation = ObjectAnimator.ofFloat(mPreviewTextView, View.ALPHA, 0f); in hidePreview()
/packages/apps/Contacts/src/com/android/contacts/widget/
DTransitionAnimationView.java82 mAnimator = ObjectAnimator.ofFloat(mMaskingView, View.ALPHA, 0.0f, 1.0f); in startMaskTransition()
85 mAnimator = ObjectAnimator.ofFloat(mMaskingView, View.ALPHA, 1.0f, 0.0f); in startMaskTransition()
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/wear/settings/
DExtendedViewHolder.java43 mScalingUpAnimator = ObjectAnimator.ofFloat(item, "scalingAnimatorValue", mMinValue, in ExtendedViewHolder()
46 mScalingDownAnimator = ObjectAnimator.ofFloat(item, "scalingAnimatorValue", in ExtendedViewHolder()
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
DCcBccView.java70 ObjectAnimator bccAnimator = ObjectAnimator.ofFloat(mBcc, "alpha", 0, 1); in animate()
75 ObjectAnimator ccAnimator = ObjectAnimator.ofFloat(mCc, "alpha", 0, 1); in animate()
/packages/apps/Camera2/src/com/android/camera/ui/
DModeTransitionView.java229 final ValueAnimator radiusAnimator = ValueAnimator.ofFloat(0, endRadius); in startPeepHoleAnimation()
232 final ValueAnimator iconScaleAnimator = ValueAnimator.ofFloat(1f, 0.5f); in startPeepHoleAnimation()
343 ObjectAnimator scrollAnimator = ObjectAnimator.ofFloat(this, "scrollDistance", in snapShadeTo()
520 ObjectAnimator alphaAnimator = ObjectAnimator.ofFloat(this, "alpha", 1f, 0f); in hideModeCover()
DCaptureAnimationOverlay.java111 ValueAnimator flashAnim1 = ValueAnimator.ofFloat(maxAlpha, maxAlpha); in startFlashAnimation()
112 ValueAnimator flashAnim2 = ValueAnimator.ofFloat(maxAlpha, .0f); in startFlashAnimation()

1234