Walid Alg 0 Posted November 27, 2024 Hello, Is it possible to use a visual component with Python code for Android, for example, using the tqdm library or similar to display a progress bar along with the ProgressBar component in Delphi? Thank you. Share this post Link to post
Rollo62 542 Posted November 27, 2024 Maybe that works for you? https://blogs.embarcadero.com/python-on-android-with-delphi-fmx/ Share this post Link to post
Walid Alg 0 Posted November 28, 2024 On 11/27/2024 at 8:53 AM, Rollo62 said: Maybe that works for you? https://blogs.embarcadero.com/python-on-android-with-delphi-fmx/ Working in Windows plate-forme but in android no Share this post Link to post
Cristian Peța 108 Posted November 28, 2024 (edited) tqdm is a text output "progress bar" for a console app. And you want to show this text output along a graphic ProgressBar from FMX? Probably in something like TMemo component? Edited November 28, 2024 by Cristian Peța Share this post Link to post
Walid Alg 0 Posted November 29, 2024 (edited) 20 hours ago, Cristian Peța said: tqdm is a text output "progress bar" for a console app. And you want to show this text output along a graphic ProgressBar from FMX? Probably in something like TMemo component? I try any component visual display him in my app. I installed delphifmx library. Like this : prog = ProgressBar(Application.MainForm) prog.SetProps( Parent=Application.MainForm, Position=Position(PointF(5, 20)), Width=200, Height=50, Value=0, ) But I have error same code who excute on Windows plate-forme SVID_20241129_115325_1.mp4 Edited November 29, 2024 by Walid Alg Share this post Link to post