English version of the README.md
Sketch是Android上一个强大且全面的图片加载器,支持GIF,手势缩放以及分块显示超大图片
多种URI支持
. 支持http://
、https://
、asset://
、content://
、file:///sdcard/sample.png
、/sdcard/sample.jpg
、drawable://
等7种URI支持gif图
. 集成了android-gif-drawable 1.1.7可以方便的显示gif图片,感谢koral--独家手势缩放和超大图支持
. 独家内置了手势缩放和分块显示超大图功能,并且结合的更好两级缓存
. 采用LRU算法在本地和内存中缓存图片,提高图片利用率和显示速度各种列表支持
. 在各种列表(ListView、RecyclerView)中循环使用不错位,并且不占用setTag()方法自动防止加载过大Bitmap
可通过maxSize来控制加载到内存的图片的尺寸,默认为ImageView的layout_width和layout_height或屏幕的宽高独家TransitionDrawable支持
. 独家支持任意尺寸的两张图片使用TransitionDrawable过渡显示,保证不变形只加载或只下载
. 除了display()方法可以显示图片之外,你还可以通过load()方法只加载图片到内存中或通过download()方法只下载图片到本地支持读取APK图标
. 支持直接读取本地APK文件的图标或根据包名和版本号读取已安装APP的图标移动网络下暂停下载
. 内置了移动网络下暂停下载图片的功能,你只需开启即可自动选择合适的Bitmap.Config
. 根据图片的MimeType自动选择合适的Bitmap.Config,减少内存浪费,例如对于JPEG格式的图片就会使用Bitmap.Config.RGB_565解码特殊文件预处理
. 提供ImagePreprocessor,可对本地的特殊文件(例如多媒体文件)进行预处理,Sketch便可直接显示其封面,读取APK文件的图标就是通过这个功能实现的强大且灵活的自定义
. 可自定义下载、缓存、解码、处理、显示、占位图等各个环节
扫描二维码下载示例APP,也可点击直接下载(Click download APK)
SketchImageView sketchImageView = findViewByID(R.id.image_main);
// display image from network
sketchImageView.displayImage("http://b.zol-img.com.cn/desk/bizhi/image/4/1366x768/1387347695254.jpg");
// display image from SDCard
sketchImageView.displayImage("/sdcard/sample.png");
sketchImageView.displayImage("file:///sdcard/sample.png");
// display apk icon from SDCard
sketchImageView.displayImage("/sdcard/google_play.apk");
// display installed app icon
sketchImageView.displayInstalledAppIcon("com.tencent.qq", 50001);
// display resource drawable
sketchImageView.displayResourceImage(R.drawable.sample);
// display image from asset
sketchImageView.displayAssetImage("sample.jpg");
// display image from URI
Uri uri = ...;
sketchImageView.displayURIImage(uri);
dependencies{
compile 'me.xiaopan:sketch:lastVersionName'
}
添加以下权限
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
最低支持Android2.2 API 7
Type | Scheme | Method |
---|---|---|
File in network | http://, https:// | displayImage(String) |
File in SDCard | /, file:// | displayImage(String) |
Content Provider | content:// | displayURIImage(Uri) |
Asset in app | asset:// | displayAssetImage(String) |
Resource in app | resource:// | displayResourceImage(int) |
Type | Scheme | jpeg | png | webp | gif | apk icon |
---|---|---|---|---|---|---|
File in network | http://, http:// | YES | YES | YES(Android4.0 above) | YES | NO |
File in SDCard | /, file:// | YES | YES | YES(Android4.0 above) | YES | YES |
Content Provider | content:// | YES | YES | YES(Android4.0 above) | YES | NO |
Asset in app | asset:// | YES | YES | YES(Android4.0 above) | YES | NO |
Resource in app | resource:// | YES | YES | YES(Android4.0 above) | YES | NO |
Sketch共有display()、load()、download()三个方法可供使用,你可以根据你的需求选择合适的方法
- download()方法会下载图片到本地,并实现本地缓存
- load()方法在download()方法的基础上,加载图片到内存中,并对图片进行处理
- display()方法在load()方法的基础上,将图片缓存在内存中并显示在ImageView上
示例:
// 显示
Sketch.with(context).display("http://biying.png", sketchImageView)
.loadingImage(R.drawable.image_loading)
.commit();
// 加载
Sketch.with(context).load("http://biying.png", new LoadListener() {
@Override
public void onCompleted(LoadResult loadResult) {
}
...
}).maxSize(100, 100).commit();
// 下载
Sketch.with(context).download("http://biying.png", new DownloadListener() {
@Override
public void onCompleted(DownloadResult downloadResult) {
}
...
}).commit();
load()和download()还支持同步执行,详情请参考同步执行load和download.md
基础功能:
进一步提升用户体验:
更多:
Copyright (C) 2013 Peng fei Pan <[email protected]>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.