Home
last modified time | relevance | path

Searched refs:buttonAnimator (Results 1 – 2 of 2) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/omnibox/
H A DLocationBarTablet.java267 ObjectAnimator buttonAnimator = ObjectAnimator.ofFloat(button, View.ALPHA, 1.f); in createShowButtonAnimator() local
268 buttonAnimator.setInterpolator(BakedBezierInterpolator.FADE_IN_CURVE); in createShowButtonAnimator()
269 buttonAnimator.setStartDelay(ICON_FADE_ANIMATION_DELAY_MS); in createShowButtonAnimator()
270 buttonAnimator.setDuration(ICON_FADE_ANIMATION_DURATION_MS); in createShowButtonAnimator()
271 return buttonAnimator; in createShowButtonAnimator()
280 ObjectAnimator buttonAnimator = ObjectAnimator.ofFloat(button, View.ALPHA, 0.f); in createHideButtonAnimator() local
281 buttonAnimator.setInterpolator(BakedBezierInterpolator.FADE_OUT_CURVE); in createHideButtonAnimator()
282 buttonAnimator.setDuration(ICON_FADE_ANIMATION_DURATION_MS); in createHideButtonAnimator()
283 return buttonAnimator; in createHideButtonAnimator()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/toolbar/top/
H A DToolbarPhone.java2592 ObjectAnimator buttonAnimator = ObjectAnimator.ofFloat(mOptionalButton, View.ALPHA, 1.f); in runShowOptionalButtonAnimation() local
2593 buttonAnimator.setInterpolator(BakedBezierInterpolator.TRANSFORM_CURVE); in runShowOptionalButtonAnimation()
2594 buttonAnimator.setStartDelay(EXPERIMENTAL_ICON_ANIMATION_DELAY_MS); in runShowOptionalButtonAnimation()
2595 buttonAnimator.setDuration(EXPERIMENTAL_ICON_ANIMATION_DURATION_MS); in runShowOptionalButtonAnimation()
2596 animators.add(buttonAnimator); in runShowOptionalButtonAnimation()
2644 ObjectAnimator buttonAnimator = ObjectAnimator.ofFloat(mOptionalButton, View.ALPHA, 0.f); in runHideOptionalButtonsAnimators() local
2645 buttonAnimator.setInterpolator(BakedBezierInterpolator.FADE_OUT_CURVE); in runHideOptionalButtonsAnimators()
2646 buttonAnimator.setDuration(EXPERIMENTAL_ICON_ANIMATION_DURATION_MS); in runHideOptionalButtonsAnimators()
2647 animators.add(buttonAnimator); in runHideOptionalButtonsAnimators()