English version of the README.md
Sketch是Android上一个强大且全面的图片加载器,支持GIF,手势缩放以及分块显示超大图片
多种URI支持
. 支持http://或https://
、asset://
、content://
、file:///sdcard/sample.jpg或/sdcard/sample.jpg
、drawable://
、data:image/或data:img/
等6种URI支持gif图
. 集成了android-gif-drawable 1.2.6可以方便的显示gif图片,感谢koral--支持手势缩放
. 支持手势缩放功能,在PhotoView的基础上进行了优化,增加了滚动条,定位等功能支持分块显示超大图
. 支持分块显示超大图功能,从此再大的图片也不怕了支持三级缓存
. 通过LruMemoryCache、LruDiskCache复用图片,加快显示时间;通过LruBitmapPool复用Bitmap,减少因GC而造成的卡顿支持纠正图片方向
. 可纠正方向不正的图片,并且分块显示超大图功能也支持,仅限jpeg格式的图片支持读取APK图标
. 支持直接读取本地APK文件的图标或根据包名和版本号读取已安装APP的图标支持Base64图片
. 支持解析 Base64 格式的图片支持各种列表
. 在各种列表(ListView、RecyclerView)中循环使用不错位,并且不占用setTag()方法自动防止加载过大Bitmap
可通过maxSize来控制加载到内存的图片的尺寸,默认为ImageView的layout_width和layout_height或屏幕的宽高独家TransitionDrawable支持
. 独家支持任意尺寸的两张图片使用TransitionDrawable过渡显示,保证不变形只加载或只下载
. 除了display()方法可以显示图片之外,你还可以通过load()方法只加载图片到内存中或通过download()方法只下载图片到本地移动网络下暂停下载
. 内置了移动网络下暂停下载图片的功能,你只需开启即可自动选择合适的Bitmap.Config
. 根据图片的MimeType自动选择合适的Bitmap.Config,减少内存浪费,例如对于JPEG格式的图片就会使用Bitmap.Config.RGB_565解码特殊文件预处理
. 通过ImagePreprocessor可对特殊文件(例如多媒体文件)进行预处理,提取出其包含的图片,读取APK文件的图标就是通过这个功能实现的强大且灵活的自定义
. 可自定义下载、缓存、解码、处理、显示、占位图等各个环节
扫描二维码下载示例APP,也可点击直接下载(Click download APK)
1.在app的build.gradle文件的dependencies节点中加入依赖
compile 'me.xiaopan:sketch:$sketch_version'
请自行替换 $sketch_version
为最新的版本 (不要"v")
如果需要播放GIF就添加sketch-gif的依赖
compile 'me.xiaopan:sketch-gif:$sketch_gif_version'
请自行替换$sketch_gif_version
为最新的版本 (不要"v")
Android Studio会自动合并AAR中所包含的权限和混淆配置
2.如果您的APP想要兼容 API 13 (Android 3.2) 及以下的版本,那么需要在您的 Application 中调用释放缓存的方法(Android 4.0以上能直接通过Context注册并回调)
public class MyApplication extends Application {
@Override
public void onTrimMemory(int level) {
super.onTrimMemory(level);
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
Sketch.with(getBaseContext()).onTrimMemory(level);
}
}
@Override
public void onLowMemory() {
super.onLowMemory();
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
Sketch.with(getBaseContext()).onLowMemory();
}
}
}
SketchImageView sketchImageView = (SketchImageView) findViewById(R.id.image_main);
// display image from net
sketchImageView.displayImage("http://t.cn/RShdS1f");
// display image from SDCard
sketchImageView.displayImage("/sdcard/sample.jpg");
sketchImageView.displayImage("file:///sdcard/sample.jpg");
// display resource drawable
sketchImageView.displayResourceImage(R.drawable.sample);
// display image from asset
sketchImageView.displayAssetImage("sample.jpg");
// display image from content provider
sketchImageView.displayContentImage(Uri.parse("content://com.android.gallery/last"));
// display base64 image
sketchImageView.displayImage("data:image/jpeg;base,/9j/4QaO...U7T/in//Z");
// display apk icon from SDCard
sketchImageView.displayImage("/sdcard/google_play.apk");
// display installed app icon
sketchImageView.displayInstalledAppIcon("com.tencent.qq", 210);
Type | Scheme | Method In SketchImageView |
---|---|---|
File in network | http://, https:// | displayImage(String) |
File in SDCard | /, file:// | displayImage(String) |
Content Provider | content:// | displayContentImage(Uri) |
Asset in app | asset:// | displayAssetImage(String) |
Resource in app | resource:// | displayResourceImage(int) |
Base64 | data:image/, data:/img/ | displayImage(String) |
Sketch共有display()、load()、download()三个方法可供使用,你可以根据你的需求选择合适的方法
- download()方法会下载图片到本地,并实现本地缓存
- load()方法在download()方法的基础上,加载图片到内存中,并对图片进行处理
- display()方法在load()方法的基础上,将图片缓存在内存中并显示在ImageView上
示例:
// 显示
Sketch.with(context).display("http://t.cn/RShdS1f", sketchImageView)
.loadingImage(R.drawable.image_loading)
.commit();
// 加载
Sketch.with(context).load("http://t.cn/RShdS1f", new LoadListener() {
@Override
public void onCompleted(LoadResult loadResult) {
}
...
}).maxSize(100, 100).commit();
// 下载
Sketch.with(context).download("http://t.cn/RShdS1f", new DownloadListener() {
@Override
public void onCompleted(DownloadResult downloadResult) {
}
...
}).commit();
load()和download()还支持同步执行,详情请参考同步执行load和download.md
基础功能:
进一步提升用户体验:
更多:
Copyright (C) 2013 Peng fei Pan <sky@xiaopan.me>
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.