Android Question ProgressDialogShow but with custom colors

luke2012

Well-Known Member
Licensed User
Longtime User
Hi All,
I'm using all the ProgressDialogShow within my project. I need to have a similar progress dialog but with custom colors

ProgressDialogShow is very smart (1 line of code) but I can't customize the colors (ex. background).
Which is the smarter way to build a similar Progress Dialog with customizable colors ?

The solution could be in customizing this ? https://www.b4x.com/android/forum/threads/b4x-custom-view-circularprogressbar.81604/#content

B4X:
ProgressDialogShow ("Attendi per favore ...")
Dim j As HttpJob : j.Initialize("j", Me)
j.PostString(Starter.WSUrl1, "")
Wait For (j) JobDone(j As HttpJob)
.....
 
Top