android-slideshow
android-slideshow copied to clipboard
Move slideshow loading to background thread
Some users are seeing this error: Input dispatching timed out
When clicked, offload the loading to a background thread:
Thread t = new Thread(){
public void run(){
your_stuff();
}
};
t.start();
Then disable the list view and replace with a loading message (see Phone Saver loading message)