Lets assume that Activity A is the parent Activity and Activity B is the child Activity. Activity B implements AsyncTask. After the AsyncTask finishes I want the user to be informed that the Async functionalty finished properly and then I want to my app to return to Activity A without the user interacting with Activity B. I know onPostExecute will facilitate what I am trying to do.
- Should i use snackbar or create a dialog?
- Is it possible after returning to Activity A to inform the user about the AsyncTask correct completion?
Maybe these questions are trivial but I am trying to get some more insight