美文网首页
不错的集图片选择、预览、拖拽排序于一身的开源项目

不错的集图片选择、预览、拖拽排序于一身的开源项目

作者: 卖梦为生_若愚 | 来源:发表于2017-06-27 10:19 被阅读0次

    原文地址:https://github.com/bingoogolapple/BGAPhotoPicker-Android?utm_source=tuicool&utm_medium=referral

    不带选择器图片预览:
    参数:上下文、拍照临时存储地址、图片集合、点击位置

    startActivity(BGAPhotoPreviewActivity.newIntent(context, newFile(Environment.getExternalStorageDirectory().getAbsoluteFile() + System.currentTimeMillis() +".png"),list,position2));
    

    图片选择:
    先给定一个拍照存储地址:

    
    File takePhotoDir =newFile(Environment.getExternalStorageDirectory(),"BGAPhotoPickerTakePhoto");startActivityForResult(BGAPhotoPickerActivity.newIntent(this,takePhotoDir,maxNum_photo, null, false),REQUEST_CODE_CHOOSE_PHOTO);
    

    带选择器图片预览:

    startActivityForResult(BGAPhotoPickerPreviewActivity.newIntent(this,mPhotosSnpl.getMaxItemCount(),models,models,position, false),REQUEST_CODE_PHOTO_PREVIEW);
    

    相关文章

      网友评论

          本文标题:不错的集图片选择、预览、拖拽排序于一身的开源项目

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