Tagged Questions
1
vote
0answers
595 views
Widget onUpdate called when Configuration Activity is launched
I'm implementing a widget and I'm facing the following problems:
1) onUpdate is called when I add the widget to the home screen, even if I specified a Configuration Activity. As soon as I add it to ...
1
vote
1answer
524 views
How to support resizable widgets?
My app supports this API range
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="14" />
It also has a single basic app widget that could be resizable but since the older ...
1
vote
1answer
445 views
How to update widgets of different sizes?
My app has supports multiple size widgets per the scheme outlined here how to add multiple widgets in one app?
It has a single abstract BaseWidgetProvider class that handle all the widgets. It is ...
0
votes
1answer
235 views
Android: multiple AppWidgets - one manifest entry
In my app I have a 4x2 Widget and now I wanted a second 4x1 Widget displayig almost the same content, so I created a secondary appwidget-provider xml. When I then wanted to use the same Widgetprovider ...