[android-developers] Re: Key dispatching timed out

2009-04-10 Thread Ramesh
hi Streets Of Boston, I solved my problem. Once again thanks for your valuable reply.. This is my new code.. import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.net.URL; import

[android-developers] Re: Key dispatching timed out

2009-04-09 Thread Streets Of Boston
How are you downloading your images? Are you doing this in your main message-thread? (e.g. in a onSomethingSomething(...) method?) If so, this causes your problem. Start a new thread. Have this thread download your image when necessary. When you thread is done, have it post back to the main

[android-developers] Re: Key dispatching timed out

2009-04-09 Thread Ramesh
hi Streets Of Boston, Thanks for your reply.. I am new to android develoment.. Here is my code.. Kindly tell me what change i should do in this. Im downloading the image in a separate thread. But im calling the thread inside onCreate(). Is this the problem? Thanks. import