Today I had one of those \"android\" moments again, which left me absolutely clueless.
I have an app which consists of a DrawerLayout, which includes a RelativeLayou
Have you tried using implementing onDrawerSlide on the drawerListener of the drawerLayour like this
@Override
public void onDrawerSlide(View drawerView, float slideOffset)
{
super.onDrawerSlide(drawerView, slideOffset);
mDrawerLayout.bringChildToFront(drawerView);
mDrawerLayout.requestLayout();
}