Android Question Alternative to Android ProgressDialog

B G

New Member
Licensed User
Hi, I have a B4A question please.
I am having trouble with the inbuilt ProgressDialog as it often doesn't want to show all of the time. I have searched the forum for an alternative and have found many references to being able to use XUI views to do it. However, I have found no actual example projects. Please note that I do not want any progress bars or indicators or any fancy animations. I just need a dialog that will reliably show during a long update operation (on the same thread), where I can regularly update it's text and will actually show the updated text straight away. If possible, I would also like it to have a 'Cancel' button. It also needs to work in both orientations.
Thank you.
 

zed

Active Member
Licensed User
Create a popup with a panel.
Add a label for the text.
Show popup when update starts.
Close when update is complete.
 
Upvote 0
Top