Merge "Hiding split shade media container when not needed" into sc-dev

This commit is contained in:
Michał Brzeziński
2021-06-17 14:17:06 +00:00
committed by Android (Google) Code Review

View File

@@ -186,11 +186,9 @@ class KeyguardMediaController @Inject constructor(
}
private fun hideMediaPlayer() {
if (useSplitShade) {
setVisibility(splitShadeContainer, View.GONE)
} else {
setVisibility(singlePaneContainer, View.GONE)
}
// always hide splitShadeContainer as it's initially visible and may influence layout
setVisibility(splitShadeContainer, View.GONE)
setVisibility(singlePaneContainer, View.GONE)
}
private fun setVisibility(view: ViewGroup?, newVisibility: Int) {