With the 22.2.1 Design Support Library and API 22(have not tested on earlier versions yet), I\'m running into issues with the status bar padding when switching between fragm
Solved it, thanks to Chris Banes.
The problem is that it doesn't know the window insets. You have to requestApplyInsets in onViewCreated.
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
ViewCompat.requestApplyInsets(coordinatorLayout);
}