• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

MultiImageSelector: 类似微信Android版的图片多选库。

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

MultiImageSelector

开源软件地址:

https://gitee.com/ant/MultiImageSelector

开源软件介绍:

MultiImageSelector

仿微信实现多图选择。支持单选和多选两种模式

###截图Example1 Select1 Select2 Select3 Select4


###运行DEMO

./gradlew installDebug

###快速开始

  • 第0步把模块 multi-image-selector 作为你的项目依赖添加到工程中.

  • 第1步在你的 AndroidManifest.xml 文件中添加权限 android.permission.READ_EXTERNAL_STORAGE.别忘了同时在 AndroidManifest.xml 中声明 MultiImageSelectorActivityPreviewPicturesActivity 这两个Activity.

        <activity            android:name="me.nereo.multi_image_selector.PreviewPicturesActivity"            android:configChanges="orientation|screenSize" />        <activity            android:name="me.nereo.multi_image_selector.MultiImageSelectorActivity"            android:configChanges="orientation|screenSize" />
  • 第2步代码中调用,例如:
     //yourActivity-Activity,requestCode-requestCode,maxNum-最多选择的图片数,selectedMode-选择模式(单选/多选)     MultiImageSelectorActivity.startSelect(yourActivity, requestCode, maxNum, selectedMode);
  • 第3步在你的 onActivityResult 方法中接受结果. 例如:
@Overrideprotected void onActivityResult(int requestCode, int resultCode, Intent data) {    super.onActivityResult(requestCode, resultCode, data);    if(requestCode == REQUEST_IMAGE){        if(resultCode == RESULT_OK){            // 获取返回的图片列表            List<String> path = data.getStringArrayListExtra(MultiImageSelectorActivity.EXTRA_RESULT);            // 处理你自己的逻辑 ....        }    }}
  • 第4步没第4步了,就这样就OK啦~ :)

  • 具体可以参考MultiImageSelectorActivity.java的实现

###感谢

  • square-picasso A powerful image downloading and caching library for Android
  • lovetuzitong-MultiImageSelector 此项目根据lovetuzitong-MultiImageSelector修改而来,修复了一些BUG,去掉了拍照功能(如果你需要也可以根据原项目添加)

###License

The MIT License (MIT)

Copyright (c) 2015 Nereo

Permission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in allcopies or substantial portions of the Software.


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap