Image list showing only white background not images
See original GitHub issueI have tried using your Album library(2.1.1) but it showing only white space not the images(preview), But it is working perfectly in version 2.0.2.
Here is my code
Album.image(ImageUploaderUtil.this)
.multipleChoice()
.camera(true)
.columnCount(3)
.selectCount(5)
.checkedList(multipleChoiceAlbumFiles)
.onResult(new Action<ArrayList<AlbumFile>>() {
@Override
public void onAction(@NonNull ArrayList<AlbumFile> result) {
multipleChoiceAlbumFiles=result;
for(AlbumFile file:multipleChoiceAlbumFiles)
{
Toast.makeText(ImageUploaderUtil.this,"Image Path"+file.getPath(),Toast.LENGTH_LONG).show();
}
}
})
.onCancel(new Action<String>() {
@Override
public void onAction(@NonNull String result) {
}
})
.start();
attached the screen below

Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (1 by maintainers)
Top Results From Across the Web
html - CSS Background Image Not Displaying - Stack Overflow
The background image is not getting displayed, I am only seeing a white background. Any ideas how to fix this, or even how...
Read more >How to fix CSS background-image not working | HTML/CSS
How to fix CSS background-image not working | HTML/CSS · 1. Check that your CSS file is linked correctly in your HTML file....
Read more >My Screen is not good on white background - Super User
It should be intuitive, but if it's not there are some ... Ideally, you should calibrate the display for accurate color reproduction.
Read more >Top 10 Best Free Background Remover Tools for 2022 - Shopify
Here's a list of 10 great background removal tools. Top picks. Best for product photos: Easy Photo Background Remover. Best for easy background...
Read more >background-repeat - CSS: Cascading Style Sheets | MDN
The background-repeat CSS property sets how background images are ... no-repeat, The image is not repeated (and hence the background image ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I found the solution the problem is because of Glide library with Android 10 ( Android Q ) Glide can’t access local storage so
the solution is sample just add this line in Manifest file
<application … android:requestLegacyExternalStorage=“true”
I also get same issue