Jacek Kwiecień
Jacek Kwiecień

Reputation: 12637

Disabling right drawer only on specific fragment

I have Activity with DrawerLayout (which contains left and right drawer). I was wondering if I could disable right drawer from specific fragments.

I've read about mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED), but it would lock whole drawer closed, and I still need the left drawer

Upvotes: 6

Views: 2420

Answers (1)

adneal
adneal

Reputation: 30804

DrawerLayout.setDrawerLockMode(int lockMode) locks all the drawers, but to lock a specific drawer you can use one of the following:

Upvotes: 10

Related Questions