I am developing an app Similar to Logo Quiz. I have around 600 images in it. Now when the app loads for the first time it takes a lot of time to load. Any solution to that loading time issue?
            Asked
            
        
        
            Active
            
        
            Viewed 304 times
        
    1
            
            
        - 
                    1Please use android-query library http://stackoverflow.com/questions/541966/how-do-i-do-a-lazy-load-of-images-in-listview/14827292#14827292 – Rahul Rawat Jul 24 '13 at 09:19
- 
                    Don't store all images in packaged .apk file. instead load image from server when app first time loads. so it will not take load on startup. – Armaan Stranger Jul 24 '13 at 09:28
- 
                    Thanks Rahul and Armaan, But I dont want my app to connect to the net. If my images increase then yes, I will use the server. – Kevin Desai Jul 24 '13 at 09:45
2 Answers
0
            There are a lot of solution for doing efficient asynchronous image loading. Here is a few of them:
A more detailed blog post on the last 2 libs: http://blog.bignerdranch.com/3177-solving-the-android-image-loading-problem-volley-vs-picasso/
 
    
    
        Romain Piel
        
- 11,017
- 15
- 71
- 106
- 
                    No problem. You might want to accept an answer at some point otherwise no one will give you any answers in the future. – Romain Piel Jul 24 '13 at 09:45
- 
                    oh yeah I know but you can accept the correct answer http://i.stack.imgur.com/uqJeW.png – Romain Piel Jul 24 '13 at 09:48
- 
                    
0
            
            
        Use universal image loader
https://github.com/nostra13/Android-Universal-Image-Loader
It will load your image in background and not block the ui
 
    
    
        An-droid
        
- 6,433
- 9
- 48
- 93
