android-slideshow icon indicating copy to clipboard operation
android-slideshow copied to clipboard

Move slideshow loading to background thread

Open ScreamingHawk opened this issue 7 years ago • 0 comments

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)

ScreamingHawk avatar Feb 22 '18 18:02 ScreamingHawk