From 67640c0cbe27e6c83b69070d23ea50c4a6f18447 Mon Sep 17 00:00:00 2001 From: Winson Chung Date: Tue, 5 Jun 2012 15:47:30 -0700 Subject: Workaround for crashing on rotation. (Bug 6611883) Change-Id: Iae24d865fb5a5572c6d3e8726569d234a60ce05c --- src/com/android/launcher2/Launcher.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/com/android/launcher2/Launcher.java') diff --git a/src/com/android/launcher2/Launcher.java b/src/com/android/launcher2/Launcher.java index 9cae5e596..105d9436b 100644 --- a/src/com/android/launcher2/Launcher.java +++ b/src/com/android/launcher2/Launcher.java @@ -704,7 +704,8 @@ public final class Launcher extends Activity AppWidgetProviderInfo pInfo = lahv.getAppWidgetInfo(); // Remove the current widget which is inflated with the wrong orientation - getWorkspace().getParentCellLayoutForView(lahv).removeView(lahv); + CellLayout cl = getWorkspace().getParentCellLayoutForView(lahv); + if (cl != null) cl.removeView(lahv); // Re-inflate the widget using the correct orientation AppWidgetHostView widget = mAppWidgetHost.createView(this, info.appWidgetId, pInfo); -- cgit v1.2.3