do you know if it is possible to delay the onStop method once it has been fired?
I'm overriding the onStop() method, and I want to add a small delay before it calls super.onStop().
(I have an activity that displays a view -dialog with a surface holder- and when I close the activity, the view is still visible - something like 1s - while home screen or prior activity is already displayed)
I have multiple ways of closing the activity, and I don't want to implement the behaviour for each way, that's way putting it in the onStop() looks a good idea to me.
Thanks in advance. G.