ProgressDialog in AsyncTask: Dynamic Update Text/Title
July 17, 2015 —Category: Software
Sometimes, you may want to update the text shown in the progress dialog. If you try to perform this in doInBackground() you'll get an exception along the lines: Only the original thread that created a view hierarchy can touch its views The solution is to not do it in doInBackground() but instead…