com.bumptech.glide.load.model.ModelCache Java Examples
The following examples show how to use
com.bumptech.glide.load.model.ModelCache.
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: HttpUrlGlideUrlLoader.java From giffun with Apache License 2.0 | 4 votes |
public HttpUrlGlideUrlLoader(ModelCache<GlideUrl, GlideUrl> modelCache) { this.modelCache = modelCache; }
Example #2
Source File: BaseGlideUrlLoader.java From giffun with Apache License 2.0 | 4 votes |
public BaseGlideUrlLoader(Context context, ModelCache<T, GlideUrl> modelCache) { this(Glide.buildModelLoader(GlideUrl.class, InputStream.class, context), modelCache); }
Example #3
Source File: BaseGlideUrlLoader.java From giffun with Apache License 2.0 | 4 votes |
public BaseGlideUrlLoader(ModelLoader<GlideUrl, InputStream> concreteLoader, ModelCache<T, GlideUrl> modelCache) { this.concreteLoader = concreteLoader; this.modelCache = modelCache; }
Example #4
Source File: ProgressModelLoader.java From imsdk-android with MIT License | 4 votes |
public ProgressModelLoader(ModelCache<String, String> modelCache) { this(modelCache, null); }
Example #5
Source File: ProgressModelLoader.java From imsdk-android with MIT License | 4 votes |
public ProgressModelLoader(ModelCache<String, String> modelCache, Handler handler) { this.modelCache = modelCache; this.handler = handler; }
Example #6
Source File: ProgressModelLoader.java From Simpler with Apache License 2.0 | 4 votes |
public ProgressModelLoader(ModelCache<String, String> modelCache) { this(modelCache, null); }
Example #7
Source File: ProgressModelLoader.java From Simpler with Apache License 2.0 | 4 votes |
public ProgressModelLoader(ModelCache<String, String> modelCache, Handler handler) { this.modelCache = modelCache; this.handler = handler; }