MaterialDrawer library turns a translucent status bar into a opaque one
问题 I am using MaterialDrawer library for adding a drawer to my activities. The activities must have translucent status bar. Like the picture below: This is the top part of my activity, when the library has not added to it yet. When I add a drawer using the library: public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); DrawerMenu.addTo(this); } } And the