You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're making some module that needs to update frequently in runtime, it makes sense to run updates if and only if DebugDrawer is visible (e.g. between onOpened() and onClosed()) and Activity is running (e.g. between onResume() and onPause()).
If we're rotating the screen, DrawerLayout itself maintains its visibility, but it can be new DrawerLayout per se, so we'll get into situation when DrawerLayout is open, as well as DebugDrawer, but onOpened() method for this instance was never called.
The text was updated successfully, but these errors were encountered:
If you're making some module that needs to update frequently in runtime, it makes sense to run updates if and only if
DebugDrawer
is visible (e.g. betweenonOpened()
andonClosed()
) andActivity
is running (e.g. betweenonResume()
andonPause()
).If we're rotating the screen,
DrawerLayout
itself maintains its visibility, but it can be new DrawerLayout per se, so we'll get into situation whenDrawerLayout
is open, as well asDebugDrawer
, butonOpened()
method for this instance was never called.The text was updated successfully, but these errors were encountered: