Prevent squishing of the QsMediaHost when not in split shade

The QSMediaHost was being squished by QSFragment. This is the
correct behavior for split shade as that media host is onscreen
when the squishiness happens. But when split shade is disabled,
then that view should not be squished.

Bug: 232528163
Test: Manually checked the repro steps
Change-Id: Ia5025ca0745ce82db9c99013768acbc210fd8b30
This commit is contained in:
Hawkwood Glazier
2022-11-22 21:46:06 +00:00
parent 90f48266bb
commit f707041f0c

View File

@@ -697,10 +697,12 @@ public class QSFragment extends LifecycleFragment implements QS, CommandQueue.Ca
if (mQSAnimator != null) {
mQSAnimator.setPosition(expansion);
}
if (mStatusBarStateController.getState() == StatusBarState.KEYGUARD
if (!mInSplitShade
|| mStatusBarStateController.getState() == StatusBarState.KEYGUARD
|| mStatusBarStateController.getState() == StatusBarState.SHADE_LOCKED) {
// At beginning, state is 0 and will apply wrong squishiness to MediaHost in lockscreen
// and media player expect no change by squishiness in lock screen shade
// and media player expect no change by squishiness in lock screen shade. Don't bother
// squishing mQsMediaHost when not in split shade to prevent problems with stale state.
mQsMediaHost.setSquishFraction(1.0F);
} else {
mQsMediaHost.setSquishFraction(mSquishinessFraction);