blob: e8c11c48bde39353ad26b51b80c223d5c7254e47 [file] [log] [blame]
Adam Cohena6d04922014-10-23 17:28:30 -07001package 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}