Skip to content

Commit

Permalink
update sample & readme
Browse files Browse the repository at this point in the history
  • Loading branch information
wyouflf committed Nov 23, 2013
1 parent f75e342 commit 69b66b4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
* ViewUtils模块:
> * android中的ioc框架,完全注解方式就可以进行UI,资源和事件绑定;
> * 新的事件绑定方式,使用混淆工具混淆后仍可正常工作;
> * 目前支持常用的16种事件绑定,参见ViewCommonEventListener类和包com.lidroid.xutils.view.annotation.event。
> * 目前支持常用的20种事件绑定,参见ViewCommonEventListener类和包com.lidroid.xutils.view.annotation.event。
* HttpUtils模块:
> * 支持同步,异步方式的请求;
> * 支持大文件上传,上传大文件不会oom;
> * 支持GET,POST,PUT,MOVE,COPY,DELETE,HEAD,OPTIONS,TRACE,CONNECT请求;
> * 下载支持301/302重定向,支持设置是否根据Content-Disposition重命名下载的文件;
> * 返回文本内容的GET请求支持缓存,可设置默认过期时间和针对当前请求的过期时间。
> * 返回文本内容的请求(默认只启用了GET请求)支持缓存,可设置默认过期时间和针对当前请求的过期时间。
* BitmapUtils模块:
> * 加载bitmap的时候无需考虑bitmap加载过程中出现的oom和android容器快速滑动时候出现的图片错位等现象;
Expand Down Expand Up @@ -247,8 +247,15 @@ handler.stop();

```java
BitmapUtils bitmapUtils = new BitmapUtils(this);

// 加载网络图片
bitmapUtils.display(testImageView, "http://bbs.lidroid.com/static/image/common/logo.png");
//bitmapUtils.display(testImageView, "/sdcard/test.jpg"); //支持加载本地图片

// 加载本地图片(路径以/开头, 绝对路径)
bitmapUtils.display(testImageView, "/sdcard/test.jpg");

// 加载assets中的图片(路径以assets开头)
bitmapUtils.display(testImageView, "assets/img/wallpaper.jpg");

// 使用ListView等容器展示图片时可通过PauseOnScrollListener控制滑动和快速滑动过程中时候暂停加载图片
listView.setOnScrollListener(new PauseOnScrollListener(bitmapUtils, false, true));
Expand Down
Binary file added sample/assets/img/wallpaper.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions sample/src/com/lidroid/xutils/sample/ImageActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,7 @@ public void onLoadCompleted(ImageView container, String url, Bitmap bitmap, Bitm
};

bitmapUtils.display(bigImage, imgUrl, bigPicDisplayConfig, callback);
// 读取assets中的图片
//bitmapUtils.display(bigImage, "assets/img/wallpaper.jpg", bigPicDisplayConfig, callback);
}
}

0 comments on commit 69b66b4

Please sign in to comment.