I\'m trying to implement the navigation drawer pattern based on my app. I downloaded the sample code from here and i ran it and 90 % of the times the drawer works ok, but so
I faced a similar issue as mentioned by you. I had a list view inside a relative layout (FILL_PARENT
). Whenever the content in the list view is less and when I dragged in the area outside the list view, the navigation drawer got struck. Setting android:clickable="true"
for the relative layout resolved the problem. Hope this may help.