Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
梁任彦 committed Aug 28, 2018
2 parents f2a8343 + 47ec13b commit f5fc225
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Android图片选择器,仿微信的图片选择器的样式和效果。支持
在Module的build.gradle在添加以下代码

```
compile 'com.github.donkingliang:ImageSelector:1.6.0'
compile 'com.github.donkingliang:ImageSelector:1.6.5'
```
ImageSelector从1.5.0版本开始使用了Glide 4.x的版本,由于Glide 3.x版本和4.x版本在使用上有所差异,如果你的项目使用了Glide 3.x版本,而又不想升级到4.x,那么你也可以使用ImageSelector:1.4.0版本,它和新的版本在使用和功能上都会有所差异。[ImageSelector 1.4.0](https://github.com/donkingliang/ImageSelector/blob/master/README1.4.0.md)

Expand Down Expand Up @@ -84,6 +84,7 @@ ImageSelector支持图片的单选、限数量的多选和不限数量的多选
ImageSelector.builder()
.useCamera(true) // 设置是否使用拍照
.setSingle(true) //设置是否单选
.setViewImage(true) //是否点击放大图片查看,,默认为true
.start(this, REQUEST_CODE); // 打开相册

//限数量的多选(比喻最多9张)
Expand All @@ -92,6 +93,7 @@ ImageSelector.builder()
.setSingle(false) //设置是否单选
.setMaxSelectCount(9) // 图片的最大选择数量,小于等于0时,不限数量。
.setSelected(selected) // 把已选的图片传入默认选中。
.setViewImage(true) //是否点击放大图片查看,,默认为true
.start(this, REQUEST_CODE); // 打开相册

//不限数量的多选
Expand All @@ -100,13 +102,15 @@ ImageSelector.builder()
.setSingle(false) //设置是否单选
.setMaxSelectCount(0) // 图片的最大选择数量,小于等于0时,不限数量。
.setSelected(selected) // 把已选的图片传入默认选中。
.setViewImage(true) //是否点击放大图片查看,,默认为true
.start(this, REQUEST_CODE); // 打开相册

//单选并剪裁
ImageSelector.builder()
.useCamera(true) // 设置是否使用拍照
.setCrop(true) // 设置是否使用图片剪切功能。
.setSingle(true) //设置是否单选
.setViewImage(true) //是否点击放大图片查看,,默认为true
.start(this, REQUEST_CODE); // 打开相册
```
REQUEST_CODE就是调用者自己定义的启动Activity时的requestCode,这个相信大家都能明白。selected可以在再次打开选择器时,把原来已经选择过的图片传入,使这些图片默认为选中状态。
Expand Down

0 comments on commit f5fc225

Please sign in to comment.