“_Problem Loading Widget” message

前端 未结 18 1799
旧巷少年郎
旧巷少年郎 2021-02-02 06:08

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

18条回答
  •  难免孤独
    2021-02-02 06:23

    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"
    

提交回复
热议问题