Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable dark fading in Navigation Drawer

Is there a way to disable the dark fading effect for the background view in the Navigation Drawer View in Android?

like image 476
Archedius Avatar asked Sep 23 '13 13:09

Archedius


1 Answers

You can use setScrimColor(int color) method. As default color is used 0x99000000. So if you don't want faded background, set transparent color in this method.

mDrawerLayout.setScrimColor(getResources().getColor(android.R.color.transparent)); 
like image 142
Koso Avatar answered Oct 05 '22 22:10

Koso