@@ -5,12 +5,12 @@ UIL aims to provide a powerful, flexible and highly customizable instrument for
5
5
6
6
![ Screenshot] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/UniversalImageLoader.png )
7
7
8
- ## Project News
8
+ ## Project News
9
9
* Really have no time for development but anyway UIL is still alive :)
10
+ * 1.9.4 is last version deployed by Maven. Moving to Gradle deploy process...
10
11
11
- ** Upcoming changes in new UIL version (1.9.4 +)**
12
+ ** Upcoming changes in new UIL version (1.9.5 +)**
12
13
* Memory Cache redesign
13
- * Video file thumbnail support via ` file:///sdcard/video.mp4 `
14
14
* ** New API:** ` DisplayImageOptions.targetSize(ImageSize) `
15
15
* HTTP cache support
16
16
* Consider ` BitmapFactory.Options.inBitmap `
@@ -26,9 +26,9 @@ UIL aims to provide a powerful, flexible and highly customizable instrument for
26
26
Android 2.0+ support
27
27
28
28
## Downloads
29
- * ** [ universal-image-loader-1.9.3 .jar] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.3 .jar ) **
30
- * ** [ universal-image-loader-1.9.3 -with-sources.jar] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.3 -with-sources.jar ) ** (for Eclipse)
31
- * [ ![ Demo app] ( https://camo.githubusercontent.com/dc1ffe0e4d25c2c28a69423c3c78000ef7ee96bf/68747470733a2f2f646576656c6f7065722e616e64726f69642e636f6d2f696d616765732f6272616e642f656e5f6170705f7267625f776f5f34352e706e67 )] ( https://play.google.com/store/apps/details?id=com.nostra13.universalimageloader.sample ) [ ![ QR Code] ( https://lh3.ggpht.com/csXEddxiLgQ6FxckefjQnP1PVugbaAYOdcuTa3vVtGV1PlWbFu2dYggoH8rI1w2RdEz1=w50 )] ( http://chart.apis.google.com/chart?chs=300x300&cht=qr&chld=|1&chl=https%3A%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fid%3Dcom.nostra13.universalimageloader.sample ) [ <img src =" http://mobway.in/image/apk.png " height =" 45px " />] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-sample-1.9.3 .apk )
29
+ * ** [ universal-image-loader-1.9.4 .jar] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.4 .jar ) **
30
+ * ** [ universal-image-loader-1.9.4 -with-sources.jar] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-1.9.4 -with-sources.jar ) ** (for Eclipse)
31
+ * [ ![ Demo app] ( https://camo.githubusercontent.com/dc1ffe0e4d25c2c28a69423c3c78000ef7ee96bf/68747470733a2f2f646576656c6f7065722e616e64726f69642e636f6d2f696d616765732f6272616e642f656e5f6170705f7267625f776f5f34352e706e67 )] ( https://play.google.com/store/apps/details?id=com.nostra13.universalimageloader.sample ) [ ![ QR Code] ( https://lh3.ggpht.com/csXEddxiLgQ6FxckefjQnP1PVugbaAYOdcuTa3vVtGV1PlWbFu2dYggoH8rI1w2RdEz1=w50 )] ( http://chart.apis.google.com/chart?chs=300x300&cht=qr&chld=|1&chl=https%3A%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fid%3Dcom.nostra13.universalimageloader.sample ) [ <img src =" http://mobway.in/image/apk.png " height =" 45px " />] ( https://github.com/nostra13/Android-Universal-Image-Loader/raw/master/downloads/universal-image-loader-sample-1.9.4 .apk )
32
32
33
33
## [ Documentation] ( https://github.com/nostra13/Android-Universal-Image-Loader/wiki )
34
34
* ** [ Quick Setup] ( https://github.com/nostra13/Android-Universal-Image-Loader/wiki/Quick-Setup ) **
@@ -55,6 +55,9 @@ Android 2.0+ support
55
55
56
56
### Simple
57
57
``` java
58
+ ImageLoader imageLoader = ImageLoader . getInstance(); // Get singleton instance
59
+ ```
60
+ ``` java
58
61
// Load image, decode it to Bitmap and display Bitmap in ImageView (or any other view
59
62
// which implements ImageAware interface)
60
63
imageLoader. displayImage(imageUri, imageView);
@@ -135,6 +138,7 @@ You can support the project and thank the author for his hard work :)
135
138
* [ AndroidQuery : ImageLoading] ( https://code.google.com/p/android-query/wiki/ImageLoading )
136
139
* [ DroidParts : ImageFetcher] ( http://droidparts.org/image_fetcher.html )
137
140
* [ Glide] ( https://github.com/bumptech/glide )
141
+ * [ Fresco] ( https://github.com/facebook/fresco )
138
142
* [ Picasso] ( https://github.com/square/picasso )
139
143
* [ UrlImageViewHelper] ( https://github.com/koush/UrlImageViewHelper )
140
144
* [ Volley : ImageLoader] ( https://android.googlesource.com/platform/frameworks/volley/ )
0 commit comments