Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/imuhao/RxPicker

The ImageSelect tool based on RxJava.
https://github.com/imuhao/RxPicker

Last synced: about 24 hours ago
JSON representation

The ImageSelect tool based on RxJava.

Lists

README

        

# RxPicker
The ImageSelect tool based on RxJava.

[中文文档](./README_CN.md)

## Feature

1. Combined with RxJava , Supper observer pattern to get result
2. Compatible with Android 7.0
3. Custom Image Loader

## Preview

## Use Glide

1.Add gradle:

```
compile 'com.caimuhao:rxpicker:1.1.5'
```

2.Extends `RxPickerImageLoader` create custom ImageLoader

```
public class GlideImageLoader implements RxPickerImageLoader {

@Override public void display(ImageView imageView, String path, int width, int height) {
Glide.with(imageView.getContext())
.load(path)
.error(R.drawable.ic_preview_image)
.centerCrop()
.override(width, height)
.into(imageView);
}
}
```

3.Initialize RxPicker

```
RxPicker.init(new GlideImageLoader());
```

4.Use

- Single Image

```
RxPicker.of().start(this).subscribe(new Consumer>() {
@Override public void accept(@NonNull List imageItems) throws Exception {
//Get the result
}
});
```

- Multiple Images

```
RxPicker.of()
.single(false)
.camera(true)
.limit(3,9)
.start(this)
.subscribe(new Consumer>() {
@Override public void accept(@NonNull List imageItems) throws Exception {
//Get the result
}
});
```