When loading a widget if it cannot find a resource or something it says Problem Loading Widget. That\'s all! Amazing! This message remains on the home screen and does not even s
Yet another possible cause of this:
I saw this in the log:
Failed to resolve attribute
The issue was that I was attempting to use a colour from the current theme as the background to one of my layouts.
e.g
android:background="?themeColor"
Changing this to a specific colour resolved the issue.
android:background="@color/White"