Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is rather a funny problem I have ever come across:

I have a table layout with 9 image buttons, 3 per row. Every ImageButton has a different image associated with it. I have set the background of the image button to transparent (#00000000). Now here is where the funny stuff happens, One of the image doesn't show up on the emulator (Gingerbread) as well as a device running Froyo. The layout editor shows all the images in place.

Here are some more stuff:

  1. I used a RelativeLayout instead of a TableLayout, the same issue persists.
  2. I changed the position of the image (used it on different buttons) and still it doesn't show up.
  3. When I use a different image they show up, but when I use this particular image it won't.
  4. All images have the same resolution (90x72) and density (72ppi)
  5. All the images are in the the 'drawable-mdpi' folder.

Any pointers?

share|improve this question
move images to "drawable" folder? obviously the problem is in image – boulder Mar 3 '11 at 7:05
I can't do that. I have density specific images. Currently I am working on mdpi. And there is no reason for just one image to hide, while the others behave normally. – Ragunath Jawahar Mar 3 '11 at 8:03
but you can try to copy (not move) your images to drawable and see if the issue is still there. Can you see your image in LayoutEditor? – Mur Votema Mar 3 '11 at 8:09
Yes, I can see the image (I am talking about only one particular image that causes the issue) on the Layout Editor and I have already mentioned it. I tried copying and moving the image to the 'drawable' folder but no use. It's still the same :( – Ragunath Jawahar Mar 3 '11 at 8:58
just an idea. your images are not selectors?! Have you tried it for another android versions (1.5, 1.6, 2.1)? – Mur Votema Mar 3 '11 at 12:19
show 1 more comment

2 Answers

up vote 12 down vote accepted



Do you still have the problem. I had a similar bug - a particular drawable was not being displayed, no matter in what ImageView.
Is it the case that your image is the first (alphabetically) in the drawable folder? For some strange reason there is a problem with the first drawable, i "solved" my problem by adding a dummy drawable in first place. Still I'm very curious where the actual problem is.

Hope that helps! And I'm looking forward for any further explanations :)

share|improve this answer
Yes, I still do have this problem. Let me check what you have said and I'll report back on this. Thanks for your time. – Ragunath Jawahar Mar 15 '11 at 11:05
Thanks a lot @abikov. Exactly as you said. Now I have a dummy drawable in place. And everything works fine. This was driving me nuts for a few days. Thank you very much. – Ragunath Jawahar Mar 15 '11 at 11:13
Glad I could help. Yet I'm not sure when did this problem start to occur, and it's still interesting to me. – abikov Mar 15 '11 at 11:17
Had the same issue in a couple of apps. Thank God I found someone who had a similar issue :) – Ragunath Jawahar Mar 17 '11 at 8:18
This bug is documented as issue 20283: code.google.com/p/android/issues/detail?id=20283 – Niels May 10 '12 at 13:40

I can confirm adding a dummy image which displays first alphabetically is a fix.

I had an image (titled about.png so of course near the top of the drawable folder) which was not displaying when the test device used was mdpi.

In my case, though, the image was not the first in the directory. I actually had an image which alphabetically displayed first called about_icon.png - which oddly was displaying fine. Additionally, the hdpi version of the image was displaying fine within an hdpi device.

I added a dummy placeholder image called "aaaa.png" and now the mdpi about image displays fine in device.

Very strange, and honestly a pretty lousy bug.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.