Loading src/com/android/launcher3/Workspace.java +8 −0 Original line number Diff line number Diff line Loading @@ -334,6 +334,14 @@ public class Workspace extends SmoothPagedView @Override public void setInsets(Rect insets) { mInsets.set(insets); CellLayout customScreen = getScreenWithId(CUSTOM_CONTENT_SCREEN_ID); if (customScreen != null) { View customContent = customScreen.getShortcutsAndWidgets().getChildAt(0); if (customContent instanceof Insettable) { ((Insettable) customContent).setInsets(mInsets); } } } // estimate the size of a widget with spans hSpan, vSpan. return MAX_VALUE for each Loading Loading
src/com/android/launcher3/Workspace.java +8 −0 Original line number Diff line number Diff line Loading @@ -334,6 +334,14 @@ public class Workspace extends SmoothPagedView @Override public void setInsets(Rect insets) { mInsets.set(insets); CellLayout customScreen = getScreenWithId(CUSTOM_CONTENT_SCREEN_ID); if (customScreen != null) { View customContent = customScreen.getShortcutsAndWidgets().getChildAt(0); if (customContent instanceof Insettable) { ((Insettable) customContent).setInsets(mInsets); } } } // estimate the size of a widget with spans hSpan, vSpan. return MAX_VALUE for each Loading