Album icon indicating copy to clipboard operation
Album copied to clipboard

:watermelon: Album and Gallery for Android platform.

Results 104 Album issues
Sort by recently updated
recently updated
newest added

请问Album是否支持只使用前置摄像头功能?

plan

![image](https://user-images.githubusercontent.com/7459297/46523590-c5a0fd80-c8b8-11e8-8c30-0945f530e547.png)

bug

能否微信聊天那样,相册选择可以选择原图或者非原图?修改那部分代码?

filterDuration()限制了这个时长,但是无效,还是可以一直录,大佬请指点,谢谢

我在之前的版本上 Fork 项目增加过 Fresco 的支持 https://github.com/imliujun/Album ,不过现在大版本更新接口改动比较大,加载图片的时候不传图片尺寸进去了,也去掉了默认的本地加载器。 除了大图缩放预览以外,其他的地方都可以通过在用户主工程写一份对应的同名 layout 文件覆盖 Library 中的 XML 文件来替换 ImageView,反正 SimpleDraweeView 现在还是集成于 ImageView 的。 但是预览的 Adapter 是在代码中创建的图片缩放控件,我觉得这里可以提供一个接口由业务侧返回一个View对象,具体的加载也在返回的时候处理。这样就能够支持所有的图片加载库了。不过 SimpleDraweeView 不支持自适应,所以加载图片的时候需要传入 View 的宽高,另一方面也能使用图片加载库的 resize 功能,解码小尺寸的图片节省内存。

Do we required to handle runtime permission for storage for devices which are >=M (marshmallow) ? In my case, If I deny permission whenever permission dialog opens then my app...

![87888bea-7017-4db5-bd01-42e467199a27](https://user-images.githubusercontent.com/14066553/41699165-12e2845e-7555-11e8-9ad0-cd9b13665ac8.png)

java.lang.OutOfMemoryError: Failed to allocate a 20 byte allocation with 0 free bytes and -21MB until OOM

我引用的是2.1.1版本: Album.image(this) .singleChoice() .filterMimeType(new Filter() { // MimeType of File. @Override public boolean filter(String attributes) { // MimeType: image/jpeg, image/png, video/mp4, video/3gp... return attributes.contains("gif"); } })