Disable dark fading in Navigation Drawer

后端 未结 4 710
天命终不由人
天命终不由人 2020-12-24 00:38

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

4条回答
  •  一整个雨季
    2020-12-24 01:13

    drawerLayout.setScrimColor(Color.parseColor("#99000000"));

    // For dark fading effect

                                or
    

    drawerLayout.setScrimColor(Color.parseColor("#33000000"));

    // For light fading effect

                                or
    

    drawerLayout.setScrimColor(Color.TRANSPARENT);

    // For no Fading

提交回复
热议问题