Walid Alg 0 Posted November 27 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 538 Posted November 27 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 Thursday at 11:46 AM 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 103 Posted Thursday at 02:15 PM (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 Thursday at 02:21 PM by Cristian Peța Share this post Link to post
Walid Alg 0 Posted Friday at 11:02 AM (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 Friday at 11:09 AM by Walid Alg Share this post Link to post