just use the following code:
Intent intent=new Intent();
intent.putExtra("RESULT_STRING", string);
setResult(RESULT_OK, intent);
finish();
get the value from this intent in the onActivtyResult method when invoking activity:
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == CREATE_REQUEST_CODE) {
if (resultCode == RESULT_OK) {
String string = data.getStringExtra("RESULT_STRING");
}
}
}
source
share