File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
library/src/com/nostra13/universalimageloader Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ final class LoadAndDisplayImageTask implements Runnable {
74
74
private static final String ERROR_POST_PROCESSOR_NULL = "Pre-processor returned null [%s]" ;
75
75
private static final String ERROR_PROCESSOR_FOR_DISC_CACHE_NULL = "Bitmap processor for disc cache returned null [%s]" ;
76
76
77
- private static final int BUFFER_SIZE = 8 * 1024 ; // 8 Kb
77
+ private static final int BUFFER_SIZE = 32 * 1024 ; // 32 Kb
78
78
79
79
private final ImageLoaderEngine engine ;
80
80
private final ImageLoadingInfo imageLoadingInfo ;
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ public class BaseImageDownloader implements ImageDownloader {
51
51
public static final int DEFAULT_HTTP_READ_TIMEOUT = 20 * 1000 ; // milliseconds
52
52
53
53
/** {@value} */
54
- protected static final int BUFFER_SIZE = 8 * 1024 ; // 8 Kb
54
+ protected static final int BUFFER_SIZE = 32 * 1024 ; // 32 Kb
55
55
/** {@value} */
56
56
protected static final String ALLOWED_URI_CHARS = "@#&=*+-_.,:!?()/~'%" ;
57
57
Original file line number Diff line number Diff line change 28
28
*/
29
29
public final class IoUtils {
30
30
31
- private static final int BUFFER_SIZE = 8 * 1024 ; // 8 KB
31
+ private static final int BUFFER_SIZE = 32 * 1024 ; // 32 KB
32
32
33
33
private IoUtils () {
34
34
}
You can’t perform that action at this time.
0 commit comments