I added a progressbar to my app but I want to hide it after some doing some action,
I used hide()
, dismiss()
and cancel()
... but none of them work?
How can I hide the progressbar?
ProgressBar.setVisibility(View.INVISIBLE)
should be enough.
Edit: fixed typo.