I have a ListView whose items have a tiled background. To accomplish this, I use the following drawable xml:

<bitmap
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/tile"
    android:tileMode="repeat" />

Usually, this works. Sometimes, however, the src drawable isn't tiled, but stretched to fill the entire list item. (I've got several different tiles like this, and I use them mixed in one ListView. If there is stretching instead of tiling, it's never been in all of them at once, for what that's worth.)

I also tried to add android:dither="true" to that xml, since I read somewhere that without it there might be bugs. That didn't change anything.

Has anyone had the same problem? How did you fix it?

link|improve this question

1  
I'm experiencing the same issue. Any resolution yet? – danh32 Dec 21 '10 at 16:09
Can you post the view assembly code starting with the adapter's getView? I have a hunch the tilemode is getting reset when using a recycled view. – Greg Feb 10 '11 at 16:46
I can confirm this behavior too. In my case- it seems totally radom. Tiled background drawable sometimes is just not tiled. Instead stretched to whole area or also only horizontally tiled vertically. I haven't find solution yet. But I put it out here- so if somebody has exact problem can relate :) – Janar Jürisson Sep 10 '11 at 18:45
Same problem here. Zulaxia's solution of reapplying the tilemode programmatically does fix it sometimes, but often it is set back to stretch anyways. For me it only happens in a layer-list of tiled drawables that I use inside a selector state list and then apply as the background of a button. Greg's comment, that the problem might be connected to tilemode being reset in recycled views, matches what I see here quite well. – user934328 Sep 26 '11 at 9:13
1  
Just had an email from the Android bug tracker saying this is resolved in ICS. – Zulaxia Apr 9 at 14:47
show 1 more comment
feedback

5 Answers

I've just had the exact same issue except with CLAMP TileMode. I have a bitmap that I want to then just stretch away at the bottom and have it set up as an XML defined BitmapDrawable and in the Graphical Preview window all looks fine, no matter what size I make the ViewImage it draws my bitmap at the top and then repeats the last pixels to fill to the end.

Launching the app on various SDK builds on the emulator and on my own phone all then produced a straight 'fill' type distortion which is completely useless.

The solution turned out to simply be to re-apply the TileMode every time I changed the size of the ImageView within my code:

((BitmapDrawable)ascender.getDrawable()).setTileModeY(TileMode.CLAMP);

Now it's all drawing fine. So yes, this looks like a bug to me.

link|improve this answer
feedback

I also got bitten by this problem. Very hard to diagnose, even harder to find similar reports and usable solutions.

"Tapas" on the freenode #android-dev irc channel came with the following utility method:

public static void fixBackgroundRepeat(View view) {
    Drawable bg = view.getBackground();
    if (bg != null) {
        if (bg instanceof BitmapDrawable) {
            BitmapDrawable bmp = (BitmapDrawable) bg;
            bmp.mutate(); // make sure that we aren't sharing state anymore
            bmp.setTileModeXY(TileMode.REPEAT, TileMode.REPEAT);
        }
    }
}

Apply it to all Views that have a tiled background set (e.g. findViewById them).

Also, I have the impression this bug started acting up after setting "anyDensity=true" in AndroidManifest.xml

link|improve this answer
Thanks, it helped, at least for now. – jki Apr 16 at 18:53
feedback

This sounds like a bug, although I've never seen it myself. If you have a simple APK that reproduces the issue, please send it to me (romainguy /at/ android.com) or file a bug at http://b.android.com.

link|improve this answer
1  
I'm also seeing this issue every time if I create a bitmap tiled inside one of the selector states. This is working all from xml and placing the selector on a Button or ImageButton. – Jona Jul 14 '11 at 22:26
feedback

I can confirm this behavior too. In my case- it seems totally radom. Tiled background drawable sometimes is just not tiled. Instead stretched to whole area or also only horizontally tiled vertically.

I haven't find solution yet. But I put it out here- so if somebody has exact problem can relate :)

link|improve this answer
feedback

This blog entry discusses the issue:

http://daniel-codes.blogspot.com.au/2011/03/tiled-bitmaps-in-layer-drawables.html

combined with the solution from Tapas listed by Ivo van der Wijk ( http://stackoverflow.com/a/9500334/1217494 ), it works for me.

The key was to remove the tiled setting from the XML, then set it to tiled at runtime. It does not work for me if they are both set to tiled.

Edit: actually, I lied. Even with this it seems to sometimes fail to tile.

Would be very nice to have a reliable work-around.

Edit 2: setting it to something else (eg. CLAMPED) then setting it back so far seems to be working.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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