I'm developing a mobile system (Android and IOS) with Delphi Seattle 10 and I came across the following problem:
I need a listview and for this, I get the data via Json through a Rest server in Php.
I'm using the following components to get the data in Delphi:
- RESTClient
- RESTRequest
- RESTRsponse
- RESTResponseDataSerAdapter1
- FDMenTable
I already receive the information correctly and display in the Listview, except for the image field because I store only the path of it in my database and then at the time of Bind in Delphi I get the following error :
EvalError in LinkFillControltoField1: Unable to cast or find converts between types string and Tbitmap.
So I ask,
How do I load an image through your url in the listview mobile using something like "loadfromfile"
?
Thank you!
Diego