I have made my first project in B4X and once finished, out of curiosity I looked at how many #if b4i there were, and almost 95% of them referred to ProgressDialogShow.
So I would like to suggest, if possible, if ProgressDialogShow, ProgressDialogHide could be included in XUI.
Thanks
So I would like to suggest, if possible, if ProgressDialogShow, ProgressDialogHide could be included in XUI.
Thanks
B4X:
#if b4i
HUD.ProgressDialogShow("Leyendo....")
#else if b4a
ProgressDialogShow("Leyendo....")
#End If
.....
#if b4i
HUD.ProgressDialogHide
#else if b4a
ProgressDialogHide
#End If