Android-FilePicker icon indicating copy to clipboard operation
Android-FilePicker copied to clipboard

Select all option not appearing

Open jerinamathews opened this issue 7 years ago • 4 comments

I enabled select all feature, but the option is not appearing in the picker. Here is the builder - FilePickerBuilder.getInstance() .enableSelectAll(true) .enableCameraSupport(false) .setActivityTitle("Select Images") .setActivityTheme(R.style.FilePickerTheme) .pickPhoto((Activity) this);

Also "Done" button does not appear inside a folder only at the main view,. What am i doing wrong? photo6055242265284159655

jerinamathews avatar Aug 25 '18 16:08 jerinamathews

I solved it by reducing the version from 2.1.5 to 2.1.3

jerinamathews avatar Aug 26 '18 17:08 jerinamathews

I changed the version to 2.1.3. Now the select all button and the done button is showing, but when I click back from a folder, it shows "No files found"

jerinamathews avatar Aug 26 '18 17:08 jerinamathews

I found the issue , in MediaDetailsActivity, line 181 if(PickerManager.getInstance().getMaxCount()>1) change to if(PickerManager.getInstance().getMaxCount()==-1)

jerinamathews avatar Aug 26 '18 18:08 jerinamathews

So i am forking the repo and making the change myself

jerinamathews avatar Aug 26 '18 18:08 jerinamathews