Load asynchronous images in listView

前端 未结 2 1510

I want to load images from a server, AFTER loading the data in a list view. I know that a lot of topics existing for this problem but I haven\'t found the solution...

<
相关标签:
2条回答
  • 2021-01-02 09:43

    There is a lot about this here on SO.. asynchrnous loading like that is called "Lazy Loading"

    https://github.com/thest1/LazyList

    for full implementation of such a process with list

    For loading images in general i recomend this :

    https://github.com/nostra13/Android-Universal-Image-Loader

    0 讨论(0)
  • 2021-01-02 09:52

    You can use volley to improve in listview performance. Take a look at this simple example: Android Custom ListView with Image and Text using Volley

    0 讨论(0)
提交回复
热议问题