我有创建列表视图的活动A,并有更新适配器的onResume操作。
protected void onResume() {
super.onResume();
ma.notifyDataSetChanged();
Log.d("resumed","true");
}我还有活动B,当B被销毁或从活动B按下back时,我如何调用A的onResume?
发布于 2013-06-10 16:27:55
如果恢复的活动是A:
例如:
您正在从A导航到B:
A is onPause:
B is onCreate -> onResume. you do your work on B and then finish() it
A in onResumehttps://stackoverflow.com/questions/17019680
复制相似问题