mirror of
https://github.com/pierre42100/ComunicAndroid
synced 2024-11-23 13:59:29 +00:00
Try to fix issue.
This commit is contained in:
parent
037fee7292
commit
5e0ad1c526
@ -101,6 +101,7 @@ public class ImageLoadHelper {
|
||||
private static void clean(){
|
||||
|
||||
//Get the list of threads
|
||||
int i = 0;
|
||||
for(View view : threads.keySet()){
|
||||
|
||||
if(threads.get(view) != null)
|
||||
@ -108,6 +109,10 @@ public class ImageLoadHelper {
|
||||
if(!threads.get(view).isAlive())
|
||||
threads.remove(view);
|
||||
|
||||
//Avoid ArrayIndexOutOfBoundsException
|
||||
i++;
|
||||
if(threads.size() < i)
|
||||
return;
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user