“_Problem Loading Widget” message

前端 未结 18 1791
旧巷少年郎
旧巷少年郎 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:35

    Just for the record. I have a FrameLayout with a TextView inside, all content in a LinerLayout, that would be the header of my widget. Initially I had this

    
        
    
    
    [...] 
    
    

    As everyone here, I had the "Problem loading widget" message. The solution was change this

        android:layout_height="?attr/actionBarSize"
    

    for this:

        android:layout_height="64dp"
    

提交回复
热议问题