Can somebody tell my why the Intent data is always null?
Intent data
@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) {
Make sure that your second activity is not finished before calling
setResult(RESULT_OK, getIntent().putExtra(ProfileActivity.USER_DATA_EXTRA, constructUser()));
i.e. you should call setResult before onPause, onStop, onDestroy, finish ... etc
setResult
onPause
onStop
onDestroy
finish