Greetings,

I'm using a service to download some (random) pics from flickr from
time to time and use them as wallpapers. I've noticed that while the
pics are downloading the UI of my app (the one used to start the
service and to configure it) is not responding (but any other app is).
I can't figure out why this happens. If I'm trying to change anything
in the UI while it is not responding I'm getting messages like this:

W/WindowManager(   49): No window to dispatch pointer action 0
W/WindowManager(   49): No window to dispatch pointer action 1

The Activity that starts the service does it by running this code on
it's onCreate method:
        ....
        Intent i = new Intent(this, BgChanger.class);
        startService(i);

The Service class is posted here: http://paste.pocoo.org/show/119015/

Thanks,
Sever

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to