I am trying to setResult after the BACK button was pressed. I call in onDestroy
Intent data = new Intent(); setResult(RESULT_OK, data)
But
Try overriding onBackPressed (from android level 5 up), or override onKeyDown() and catch KeyEvent.BUTTON_BACK (see Android Activity Results) This does the trick for me.