with the AsyncTask Method in Android, exists the event onPostExecute() to execute a code after the end of task. What is the equivalent with the Thread Method? I searched, but I didn’t find any solution.
Edit: I can’t place a call at the end of run method because I need to execute operation in the UI thread, and I can’t execute this operation in a different thread.
Place the call at the end of the run method…