Is there an API to increase the width/sensitivity of pulling the Navigation Drawer from the left side of the screen? For ex: as of now, I need to press my finger closely to the left of the screen to pull the drawer out. I would like to increase this sensitivity.
Asked
Active
Viewed 1,525 times
1
-
As far as I know you cannot increase the pull area of the `NavigationDrawer`. Google didn't choose the current value lightly. It should be a pretty good compromise between ease of use and the chance to unintentionally open the drawer. – Xaver Kapeller Dec 04 '14 at 19:06
2 Answers
3
There is a solution. You can Set drag margin for your Navigation Drawer
Check this link Set drag margin for Android Navigation Drawer

Community
- 1
- 1

Ahmed Hegazy
- 12,395
- 5
- 41
- 64
0
There is no need to do that since the users could easily pop open the Navigation Drawer by pressing the title area iff you implement the DrawerListener
interface or the more convinient ActionBarDrawerToggle
class to provide the 3 horizontal line icon indicating there is Navigation Drawer being present. Then you just override the onPostCreate()
method in your Activity and call ActionBarDrawerToggle.syncState()
method to allow users to open the drawer by pressing about the title area. Click here for more info on how to achieve that. Hope this helps

Biu
- 1,066
- 10
- 18