Android调用相机/图库
2018-07-17 本文已影响72人
dong_hui
两个不错的库
1.智能裁剪功能,识别文件身份证边缘:https://github.com/pqpo/SmartCropper
2. 选择照片九宫格:https://github.com/smuyyh/ImageSelector
- 注意事项:需要在创建的时候初始化oncreate()函数即可,其他使用方法根据GitHub介绍使用
// 自定义图片加载器
ISNav.getInstance().init(new ImageLoader() {
@Override
public void displayImage(Context context, String path, ImageView imageView) {
Glide.with(context).load(path).into(imageView);
}
});