today i tried to make my listview a bit more dynamic. So i created a white ninepatch-image and added a colorfilter with the .setColorFilter method. That's not the problem. But after applying this, everytime i scroll the Image is scaling wrong (randomly) so lets say my item is 100dp high with some text. After scrolling the item is still 100dp high and all text is shown but the image in the Background only uses 50dp now.

Here's my code:

here how i set the Colorfilter:

orgleftbox = context.getResources().getDrawable(R.drawable.list_bubble);
orgleftbox.setColorFilter( 0xff00c0ff, Mode.MULTIPLY );

and here how i add it in my adapter

v = inflater.inflate(R.layout.list_view_item, null);            
TextView t = (TextView)v.findViewById(R.id.text);
t.setBackgroundDrawable(orgrightbox);

I hope someone could help me. Because this bug is annoying me ;(

link|improve this question

What class you use for orgleftbox? NinePatchDrawable or simple Drawable? – Pasha May 4 '11 at 13:55
I use the normal Drawable could this cause this problem? – mikepenz May 4 '11 at 13:57
I'm not sure, but maybe if you change Drawable to NinePatchDrawable its help. – Pasha May 4 '11 at 14:00
i will try but how can i get a ninepatchdrawable from my /drawable folder? – mikepenz May 4 '11 at 14:03
so i casted my drawable to a ninepatchdrawable added the colorfilter but no change ;( – mikepenz May 4 '11 at 14:05
show 4 more comments
feedback

2 Answers

Your interpretation is correct, you cannot use the Drawable on several Views. The Drawable has a size set by its View, so if you attach it to several Views at the same time, it won't work properly unless the Views have exactly the same dimension.

link|improve this answer
yes i wrote it above in my solution. if i set it to all it won't work so i have to set it for each (not the same drawable so not the same link to the mem) i hope i havn't descriped it too wrong above? my main language is german so i hope i was able do describe it as clear as possible – mikepenz May 4 '11 at 16:32
feedback
up vote 1 down vote accepted

i was able to fix my problem on my own. So i answer this for everybody else ;).

The problem was that i loaded my drawable once in the constructor, because i thought so i won't have to load it for each listitem new. But the android-system handles them as the same memory object. so every listitem-background uses the same mem-space (i hope it isn't wrong, i think so). If i start scrolling the next listitem will be declared and changes the height and width of its background to its needs, example the next item is only 50dp high it changes the saved value to this one. Now every other background of the list will change more or less to this height too.

The simple fix is, that you have to load and apply the colorfilter for each item new. espec. in the getView Method.

@Override
public View getView(int pos, View convertView, ViewGroup parent) {
    View v = null;
    leftbox = (NinePatchDrawable) r.getDrawable(R.drawable.bubble_green);
    leftbox.setColorFilter( 0xff00c0ff, Mode.MULTIPLY );

    v = inflater.inflate(R.layout.list_view_item_right, null);
    TextView t = (TextView)v.findViewById(R.id.text);
    t.setBackgroundDrawable(leftbox);

i hope this answer was useful.

EDIT (Thousand times simpler):

If you only want to apply a colorFilter to a Layout(Textview...) do it this way (thanks Pasha):

TextView t = (TextView)v.findViewById(R.id.text);
t.getBackground().setColorFilter(0xff00c0ff, Mode.MULTIPLY );
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.