asdsolutions-os / duo-navigation-drawer

A flexible, easy to use, unique drawer library for your Android project.
http://psdcompany.nl/
Apache License 2.0
1.1k stars 191 forks source link

Issue with disabled buttons for content #40

Open polyak731 opened 4 years ago

polyak731 commented 4 years ago

When we are implementing this drawer layout and the content view contains buttons that are disabled after opening and closing the drawer layout all the buttons in the content become enabled.

The problem is in the next code(class DuoDrawerLayout):

if (mDragOffset == 0) { setViewAndChildrenEnabled(mContentView, true); setViewAndChildrenEnabled(mMenuView, false); }

polyak731 commented 4 years ago

There are no place in the code where you guys are providing setViewAndChildrenEnabled(mContentView, false);

polyak731 commented 4 years ago

Please mention that you've got my point.

cergo123 commented 4 years ago

Not only buttons, but all views are not disabled for me including relative layouts and edit text. I believe the current solution will be a manual edit to remove the mentioned function but still not sure what it does.

xeyal21 commented 2 years ago

Not only buttons, but all views are not disabled for me including relative layouts and edit text. I believe the current solution will be a manual edit to remove the mentioned function but still not sure what it does.

Were you able to find a solution?