com.nostra13.universalimageloader.core.assist.FlushedInputStream Java Examples
The following examples show how to use
com.nostra13.universalimageloader.core.assist.FlushedInputStream.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ImageLoaderConfiguration.java From candybar with Apache License 2.0 | 5 votes |
@Override public InputStream getStream(String imageUri, Object extra) throws IOException { InputStream imageStream = wrappedDownloader.getStream(imageUri, extra); switch (Scheme.ofUri(imageUri)) { case HTTP: case HTTPS: return new FlushedInputStream(imageStream); default: return imageStream; } }
Example #2
Source File: ImageLoaderConfiguration.java From letv with Apache License 2.0 | 5 votes |
public InputStream getStream(String imageUri, Object extra) throws IOException { InputStream imageStream = this.wrappedDownloader.getStream(imageUri, extra); switch (Scheme.ofUri(imageUri)) { case HTTP: case HTTPS: return new FlushedInputStream(imageStream); default: return imageStream; } }
Example #3
Source File: ImageLoaderConfiguration.java From mobile-manager-tool with MIT License | 5 votes |
@Override public InputStream getStream(String imageUri, Object extra) throws IOException { InputStream imageStream = wrappedDownloader.getStream(imageUri, extra); switch (Scheme.ofUri(imageUri)) { case HTTP: case HTTPS: return new FlushedInputStream(imageStream); default: return imageStream; } }
Example #4
Source File: ImageLoaderConfiguration.java From BigApp_WordPress_Android with Apache License 2.0 | 5 votes |
@Override public InputStream getStream(String imageUri, Object extra) throws IOException { InputStream imageStream = wrappedDownloader.getStream(imageUri, extra); switch (Scheme.ofUri(imageUri)) { case HTTP: case HTTPS: return new FlushedInputStream(imageStream); default: return imageStream; } }
Example #5
Source File: ImageLoaderConfiguration.java From WliveTV with Apache License 2.0 | 5 votes |
@Override public InputStream getStream(String imageUri, Object extra) throws IOException { InputStream imageStream = wrappedDownloader.getStream(imageUri, extra); switch (Scheme.ofUri(imageUri)) { case HTTP: case HTTPS: return new FlushedInputStream(imageStream); default: return imageStream; } }
Example #6
Source File: h.java From MiBandDecompiled with Apache License 2.0 | 5 votes |
public InputStream getStream(String s, Object obj) { InputStream inputstream = a.getStream(s, obj); switch (f.a[com.nostra13.universalimageloader.core.download.ImageDownloader.Scheme.ofUri(s).ordinal()]) { default: return inputstream; case 1: // '\001' case 2: // '\002' return new FlushedInputStream(inputstream); } }
Example #7
Source File: ImageLoaderConfiguration.java From Android-Universal-Image-Loader-Modify with Apache License 2.0 | 5 votes |
@Override public InputStream getStream(String imageUri, Object extra) throws IOException { InputStream imageStream = wrappedDownloader.getStream(imageUri, extra); switch (Scheme.ofUri(imageUri)) { case HTTP: case HTTPS: return new FlushedInputStream(imageStream); default: return imageStream; } }
Example #8
Source File: ImageLoaderConfiguration.java From android-open-project-demo with Apache License 2.0 | 5 votes |
@Override public InputStream getStream(String imageUri, Object extra) throws IOException { InputStream imageStream = wrappedDownloader.getStream(imageUri, extra); switch (Scheme.ofUri(imageUri)) { case HTTP: case HTTPS: return new FlushedInputStream(imageStream); default: return imageStream; } }