i heve one pojo class name contact
i open new activity for edit it
using this
Intent iEditContact = new Intent(JsonParseActivity.this, EditContatctActivity.class);
iEditContact.putExtra(Constant.intent_key_edit_contact, contact);
startActivityForResult(iEditContact, Constant.edt_contect_request_code);
i received that contact using this
if (iContact != null && iContact.hasExtra(Constant.intent_key_edit_contact)) {
contact = iContact.getParcelableExtra(Constant.intent_key_edit_contact);
after i updte its name and number and other details...i want send again that pojo to my main activity and refresh recyclerview
how to do this with help of OnActivityResult() for without create new activity again
and how to retrive that list again in my mainactivtiy