WebCachedImageView
WebCachedImageView copied to clipboard
Simple library for Android to asynchronously fetch images, cache them and display them on ImageViews.
I get the following error: Error:(33, 13) Failed to resolve: io.leocad:webcachedimageview:2.0.0 Show in FileShow in Project Structure dialog Here are the details: classpath 'com.android.tools.build:gradle:2.2.3' compileSdkVersion 23 buildToolsVersion '23.0.3' defaultConfig {...
How to set default image while downloading image from URL? Currently, the imageView shows grey background while downloading. I have set the image src to a image, however it doesn't...
Direct image url is ok, I can cache it easily using this library. But my image url is listed in json, I can display it normally. But I happen to...
Hello there I am currently working on an app and I am using this framework to get Images from the web. Unfortunately this framework throws an exception while inflating the...
It was added the "placeHolder" attribute in the WebCachedImageView to allow the user to set, by XML Layout, a default image while the requested image is downloaded.
Can you implement by analogy with WebCachedImageView such a possibility to VideoView?
Hi there! I try add a `WebCachedImageView` programatically in the `instantiateItem` method of my `PageAdapter` like this: @Override public Object instantiateItem(ViewGroup container, int position) { WebCachedImageView imageView = new WebCachedImageView(context);...
I suppose Strings are not to be checked using == or != operator. Following code would be better: BitmapWorkerTask task = getBitmapWorkerTask(); if(task != null) { if(task.url != null) {...