Tag: fmx
-
How do I make a listview with an image, caption and subtext in Delphi FMX
To create a listview with an image, caption, and subtext in Delphi FMX, you can use the TListView control and set its ItemAppearance.ItemHeight property to a value larger than the default to make room for the subtext. Then, you can add items to the listview by creating TListViewItem objects and setting their properties. Here is…