question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Image list showing only white background not images

See original GitHub issue

I 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 screenshot_20180518-135126

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:8 (1 by maintainers)

github_iconTop GitHub Comments

1reaction
MrHeshamYemencommented, Aug 12, 2021

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”

0reactions
MrHeshamYemencommented, Aug 12, 2021

I also get same issue

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found