I have a child activity. I then call:
Intent intent = new Intent(WifiManager.ACTION_PICK_WIFI_NETWORK);
startActivity(intent);
If the user doesn't do anything for 60 seconds, I want to return to the child activity to do something else. However once I call startActivity(intent);
or even startActivityForResult(intent);
I can't figure out how to get back to the child activity.