1package com.android.launcher3;
2
3import android.content.Context;
4import android.graphics.Rect;
5import android.util.AttributeSet;
6
7public class LauncherRootView extends InsettableFrameLayout {
8    public LauncherRootView(Context context, AttributeSet attrs) {
9        super(context, attrs);
10    }
11
12    @Override
13    protected boolean fitSystemWindows(Rect insets) {
14        setInsets(insets);
15        return true; // I'll take it from here
16    }
17}