Lockscreen : Fix widgets disabled
Currently, when keyguard widgets are disabled via the DevicePolicyManager, a default widget if specified via widget_default_package_name/widget_default_class_name is added on the main screen, and if not successful the default status widget is added. However in its current state, each cycle of the lockscreen alternates between the two widgets. Reason is, the default app widget is constantly recycled on screen power cycles, and in such events, when checkAppWidgetConsistency() fails to add the widget (since the id is no longer valid), it toggles back to the default status widget, and resets the stored id. Next cycle a new id is allocated and it works and so on ... This patchset addresses this issue by not removing the default status widget if not necessary, hence preserving its id and fixing the toggling issue. Change-Id: I6b21d18346fed5accc72141097939c92ee9aaa3c
Loading
Please register or sign in to comment