FilePicker icon indicating copy to clipboard operation
FilePicker copied to clipboard

Nothing is shown

Open pedrotlf opened this issue 5 years ago • 4 comments

When I start the activity nothing is loaded. Images, documents, nothing..

I'm currently testing at an Android 10 device (Moto G8 Power) using 1.4.0-alpha02 (tested with 1.4.0-alpha01 as well). If I try to use 1.3.0, 1.3.1 or 1.3.2 I get a black screen and lots of lags :/ Below those versions the app simply crashes.

pedrotlf avatar May 22 '20 04:05 pedrotlf

Can you provide the configuration used?

jaiselrahman avatar May 23 '20 08:05 jaiselrahman

Intent intent = new Intent(this, FilePickerActivity.class);

intent.putExtra(FilePickerActivity.CONFIGS, new Configurations.Builder() .setCheckPermission(true) .setShowImages(true) .setShowFiles(false) .enableImageCapture(true) .setMaxSelection(1) .setSkipZeroSizeFiles(true) .build());

startActivityForResult(intent, COD_REQUEST);

pedrotlf avatar May 25 '20 17:05 pedrotlf

I could not reproduce the issue, can you provide more context. Can you try it with setIgnoreNoMedia(false) and setIgnoreHiddenFile(false).

jaiselrahman avatar May 27 '20 07:05 jaiselrahman

It's Working @jaiselrahman @meumeunome but it's lagging

MustafaDev-shaikh avatar Jun 12 '20 05:06 MustafaDev-shaikh