1
0
Fork 0

For #7158: Fixes browser to search animation fade

master
Sawyer Blatz 2020-04-16 13:31:37 -07:00 committed by Emily Kager
parent 6df11619fd
commit 1f8f69548a
1 changed files with 3 additions and 13 deletions

View File

@ -89,6 +89,7 @@ class BrowserAnimator(
viewLifeCycleScope?.launch(Dispatchers.Main) {
delay(ANIMATION_DELAY)
captureEngineViewAndDrawStatically {
unwrappedSwipeRefresh?.alpha = 0f
browserZoomInValueAnimator.start()
}
}
@ -111,18 +112,6 @@ class BrowserAnimator(
}
}
/**
* Triggers the *fade out* browser animation to run.
*/
fun beginFadeOut() {
viewLifeCycleScope?.launch(Dispatchers.Main) {
captureEngineViewAndDrawStatically {
unwrappedEngineView?.asView()?.visibility = View.GONE
browserFadeInValueAnimator.reverse()
}
}
}
/**
* Makes the swipeRefresh background a screenshot of the engineView in its current state.
* This allows us to "animate" the engineView.
@ -136,12 +125,13 @@ class BrowserAnimator(
if (!fragment.isAdded()) { return@captureThumbnail }
unwrappedSwipeRefresh?.apply {
alpha = 0f
// If the bitmap is null, the best we can do to reduce the flash is set transparent
background = bitmap?.toDrawable(context.resources)
?: ColorDrawable(Color.TRANSPARENT)
}
unwrappedEngineView?.asView()?.visibility = View.GONE
onComplete()
}
}