Reputation: 469
I have written a Catching Fire Countdown app that has a background image. I had the image placed in all Drawable folders. I removed them so the file wasn't so large and I received complaints that the image no longer showed. I put the images back, the app updated, and I'm still being told that the picture isn't showing up on certain devices. Nexus 7 is one of them and Galaxy tab II are the 2 recent ones I've heard about. Instead of my image it is just a black background.
Any idea why? How can I get an image to display on EVERY device?
I was reading something about tablets, the image, and it being a possible out of memory thing? Does that sound familiar to anyone?
Upvotes: 0
Views: 2958
Reputation: 2823
Put your set of image in every following folder
**drawable-mdpi
drawable-ldpi
drawable-hdpi
drawable-xhdpi**
After looking into drawable-mdpi,drawable-ldpi,drawable-hdpi,drawable-xhdpi.Last place where the Android OS looks for the Image if it is unable to find that image, is the drawable folder So try placing the image in it also and see if it works.
Upvotes: 2