美文网首页
Android调用相机/图库

Android调用相机/图库

作者: dong_hui | 来源:发表于2018-07-17 18:18 被阅读72次

    两个不错的库

    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);
        }
    });
    

    相关文章

      网友评论

          本文标题:Android调用相机/图库

          本文链接:https://www.haomeiwen.com/subject/nhpgpftx.html