Jump to content
Walid Alg

P4D Android visual component

Recommended Posts

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

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 by Cristian Peța

Share this post


Link to post
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 

Edited by Walid Alg

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×