mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 10:48:19 +00:00
17 lines
445 B
Java
17 lines
445 B
Java
|
|
package com.android.launcher3;
|
||
|
|
|
||
|
|
import android.content.Context;
|
||
|
|
import android.graphics.Rect;
|
||
|
|
import android.util.AttributeSet;
|
||
|
|
|
||
|
|
public class LauncherRootView extends InsettableFrameLayout {
|
||
|
|
public LauncherRootView(Context context, AttributeSet attrs) {
|
||
|
|
super(context, attrs);
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
protected boolean fitSystemWindows(Rect insets) {
|
||
|
|
setInsets(insets);
|
||
|
|
return true; // I'll take it from here
|
||
|
|
}
|
||
|
|
}
|