@a7ce5937 what screen was that on? profile?
dansup, home timeline but it's actually on all screens. It feels like you forgot to set flags for your window so it doesn't extend behind the status bar. Try something like getActivity().getDecorView().setSystemUiVisibility(getActivity().getDecorView().getSystemUiVisibility() | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE); Also check that you are handling the window insets correctly if you override fitSystemWindows and/or onApplyWindowInsets.