Android widget not showing up on the list after developed

后端 未结 8 718
渐次进展
渐次进展 2021-01-01 12:41

I\'m upgrading my app with widget. It\'s not the first widget I\'ve done. I was always encountering weird issues, but the widget was shwoing up on the list eventually.

8条回答
  •  囚心锁ツ
    2021-01-01 13:09

    after hours of searching and failing to resolve, I decided to open a sample project of a widget that works and go comparing item by item to see what was wrong, in the end, I solve added the following lines on my res/xml/widget_info.xml:

    android:minHeight="XXXdp"
    android:minResizeHeight="XXXdp"
    android:minResizeWidth="XXXdp"
    android:minWidth="XXXdp"
    

    where XXX is some value.

提交回复
热议问题