This repository has been archived by the owner on Apr 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 433
Selected menu items remain highlighted #21
Labels
Comments
Are you sure that you use the last version of this library? |
yup, just added your library to my project today, version 1.1.9 |
Can you send me your complete activity please? |
Just sent it to you via email. |
I'm working on a new release. For everyone that has got this problem for now please follow this method for adding your sections: mainSection = this.newSection("Home", getResources().getDrawable(R.drawable.ic_home_grey600_48dp), new MainFragment());
this.addSection(mainSection);
pendingShares = this.newSection("Pending shares",getResources().getDrawable(R.drawable.ic_database_grey600_48dp),new PendingSharesFragment()).setNotifications(10);
this.addSection(pendingShares); |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi!
First of all, thank you for your great job.
I came across a little problem while implementing this drawer.
When I declare sections inside addSection(), no problem.
But when I try to declare them beforehand as the following:
the drawer items remain highlighted when I navigate between sections.
Should I instantiate sections manually using
new MaterialSection()
?The text was updated successfully, but these errors were encountered: