William23668 8 Posted August 28 Hi I need a component that display images one by one in Firemonkey Android Thanks Share this post Link to post
Remy Lebeau 1394 Posted August 28 (edited) Did you look at the TImage component yet? https://docwiki.embarcadero.com/Libraries/en/FMX.Objects.TImage Edited August 28 by Remy Lebeau 1 Share this post Link to post
William23668 8 Posted August 28 (edited) @Remy Lebeau Thanks that can work. I have folder of images but can you advise how I can display 3 pictures in one scrollable TImage box ? like this: Edited August 28 by William23668 Share this post Link to post
JonRobertson 72 Posted August 28 I would try placing a TScrollBox on the form, then place three TImage components inside the scrollbox. I suspect there are other ways that may provide more flexibility. I don't have the experience with FMX to suggest a better option. 1 Share this post Link to post
Remy Lebeau 1394 Posted August 28 Another option would be a TListView with an image per list item: https://docwiki.embarcadero.com/Libraries/en/FMX.ListView.TListView 1 Share this post Link to post