I have a listview linked to an FDMemTable, in the event:
TForm31.ListView1UpdateObjects(const Sender: TObject;
const AItem: TListViewItem);
I do the following to leave the round photos:
var imagem : TListItemImage;
begin
imagem := AItem.Objects.FindObject('Image_funcionario') as TListItemImage;
Circle1.Fill.Bitmap.Bitmap := imagem.Bitmap;
Image1.Bitmap := Circle1.MakeScreenshot;
TListItemImage(AItem.Objects.FindDrawable('Image_funcionario')).Bitmap := Image1.Bitmap;
end;
The problem is this: When I load new records in FDMemTable, the application skips some lines of the event and does not leave the photos round.