I have activity A which creates list view and has onResume
action to update adapter.
protected void onResume() {
super.onResume();
ma.notifyDataSetChanged();
Log.d("resumed","true");
}
Also I have activity B. How can I call A's onResume
, when B is destroyed or it pressed back
from activity B?