Damned ! As far as I remember I test these codes with Berlin version but not for mobile devices.
I investigate, (check my old hard disk to remember my various tests) and found the problem but no solution yet.
I was right it as to do with bitmap !
But I cheat a little . I don't know which source you use, hope it's the color demo one.
Cheating :
I add a bitmap to my Tprotypebindsource .
I link this one to the image object of the list, doing that we don't need to create (and destroy) bitmaps.
Finally I change my code
procedure TForm1.ListView1UpdatingObjects(const Sender: TObject;
const AItem: TListViewItem; var AHandled: Boolean);
var AListItemBitmap : TListItemImage;
AListItemText : TListItemText;
AColor : TAlphaColor;
begin
AListItemBitmap:=AItem.Objects.FindObjectT<TListItemImage>('Image2');
AListItemText:=AItem.Objects.FindObjectT<TListItemText>('Text1');
if Assigned(AListItemBitmap) then
begin
// AListItemBitmap.Bitmap:=TBitmap.Create(40,40);
try
AColor:=StringToAlphaColor(AListItemText.Text)
except // certaines couleurs sont inconnues! i.e. monneygreen, ltgrey
AColor:=TAlphaColorRec.Null;
end;
AListItemBitmap.Bitmap.Clear(AColor);
end;
end;
Don't forget to remove the onCloseQuery event
And, as you can see, image attached, it works !
After this "ascertainment", I dug in the developpez.net forum and found this post i wrote. The goal is now to mix the two but how ?