Merge pull request #4030 from ByteHamster/restore-visibility

Restore ExternalPlayer visibility when restoring instance state
This commit is contained in:
H. Lehmann 2020-04-10 00:09:52 +02:00 committed by GitHub
commit e22702ec09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -309,6 +309,15 @@ public class MainActivity extends CastEnabledActivity {
outState.putInt(SAVE_BACKSTACK_COUNT, getSupportFragmentManager().getBackStackEntryCount());
}
@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
super.onRestoreInstanceState(savedInstanceState);
if (getBottomSheet().getState() == BottomSheetBehavior.STATE_EXPANDED) {
bottomSheetCallback.onSlide(null, 1.0f);
}
}
@Override
public void onStart() {
super.onStart();