When I press a button I would like to have a progressbar showing up so I inserted this code:
progDailog = ProgressDialog.show(this, "Downloading data", "please wait....", true);
But the progressDialog is not showing at all. Why? What more do I need to do to show it?
/M