This extension allows you to change the color of the status bar text to a dark color. When used in combination with an extension such as TaifunTools, you can use a lighter status bar background color without worrying about its impact on readability. Note that this extension only functions on API 23 (Marshmallow) and later. On older versions it has no effect.
Can you add a block in the "status bar text color extension"
that is the transparent status bar block.
If you need the java code, maybe this code can help you :
Window w = this.getWindow();w.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);w.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); w.setStatusBarColor(Color.parseColor("#00000000"));