I want to make my activity full screen with status bar on top of it like this picture:
I have used this code in manifest inside activity
If you dont want your "Translucent navigation" transparent, here is the code to just make transparent the status bar
In your theme:
- @android:color/transparent
- true
- true
In your activity onCreate:
Window window = getWindow();
WindowManager.LayoutParams winParams = window.getAttributes();
winParams.flags &= ~WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS;
window.setAttributes(winParams);
window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);