Shall I place commands before or after super.onDestroy() when overwriting an activity's ondestroy?
protected void onDestroy() {
//option 1: callback before or ...
super.onDestroy();
//option 2: callback after super.onDestroy();
}
(Now I fear: If super.onDestroy is too fast, it will never arrive in option 2.)