IPicker
A material design style pictures selector.
Screenshot
Usage
Gradle
dependencies {
compile 'com.liuguangqiang.ipicker:library:1.0.1'
}
Maven
com.liuguangqiang.ipicker
library
1.0.1
aar
Manifest
Theme
@color/color_primary
@color/color_primary_dark
@color/color_primary
Open the picker
IPicker.setLimit(1);
IPicker.open(context);
Return the selected images by EventBus.
@Subscribe
public void onEvent(IPickerEvent event) {
}
Also support to get the selected im
1