可以预览放大的Android图片选择器

时间:2016-08-19 10:49 来源:互联网 作者:源码搜藏收藏

  • 源码类别:图片ImageView
  • 源码大小:1.8 MB
  • 编码格式:gbk,utf8,不限
  • 运行环境:php+mysql
  • 广告推荐

从Android设备选择图像变得容易:-)在预览时您也可以放大图像。您可以选择不同的专辑图片。我使用UIL,所以你可以设置图像缓存你自己的方式,如果你想改变。在你的手机美孚。选择图像的结果也被保留。
在之前也发布过几个Android图片选择源码
高性能多选图片库自定义图片多选控件图片多选功能实现仿微信图片选择带拍照



AndroidManifest.xml中更多的细节。

    Intent intent = new Intent(context, activity);
    intent.putExtra(PhotoSelectorActivity.KEY_MAX, maxImage);
    intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
    context.startActivityForResult(intent, requestCode);

    @Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (resultCode != RESULT_OK)
        return;
    if (requestCode == SELECT_IMAGE_CODE) {// selected image
        if (data != null && data.getExtras() != null) {
            @SuppressWarnings("unchecked")
            List<PhotoModel> photos = (List<PhotoModel>) data.getExtras().getSerializable("photos");
            if (photos == null || photos.isEmpty()) {
                UIHelper.ToastMessage(this, R.string.no_photo_selected);
            } else {
                Intent intent = new Intent(this, YourOwnLogic.class);
                Bundle b = new Bundle();
                b.putSerializable("album_pojo", albumPojo);
                b.putSerializable("photos", (Serializable) photos);
                intent.putExtras(b);
                startActivity(intent);
                finish();
            }
        }
    }
  • 从相册中选择图像

选择图像预览所选图像

  • 浏览有图像的所有设备文件夹

浏览相册

  • 预览和缩放选定的图像

 

本站资源仅限于学习研究,严禁从事商业或者非法活动! 源码搜藏网所有源码来自互联网转载与用户上传分享,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!

图片ImageView下载排行

最新文章