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
After first run this fragment, DefaultMenuItemPosition don't checked in list. Because loading logic getDefaultMenuItemPosition () occurs before creating mMenuListView.
Approximate solution:
In BaseDrawerFragment move if (savedInstanceState == null) { selectMenuItem(getDefaultMenuItemPosition()); }
of onCreate to onCreateView method
The text was updated successfully, but these errors were encountered:
After first run this fragment, DefaultMenuItemPosition don't checked in list. Because loading logic
getDefaultMenuItemPosition ()
occurs before creatingmMenuListView
.Approximate solution:
In BaseDrawerFragment move
if (savedInstanceState == null) { selectMenuItem(getDefaultMenuItemPosition()); }
of
onCreate
toonCreateView
methodThe text was updated successfully, but these errors were encountered: