我有 3 个活动。
- 主窗口 5 个按钮
- 从按钮上的主窗口按此窗口打开(将其称为父窗口)
- 在父窗口按钮上按此窗口打开,将其称为结束子窗口。
现在从子窗口中,我从父窗口中获取值,如下所示:
// Set - from Window1
Intent MyRotationsAddPicture1 = new Intent(getBaseContext(), MyRotationsAddPicture.class);
MyRotationsAddPicture1.putExtra("Title", "1");
MyRotationsAddPicture1.putExtra("Content", "2");
startActivity(MyRotationsAddPicture1);
// Get - from Window2
Log.d(TAG, getIntent().getExtras().getString("Title"));
// Workout and exit this Window2 > to go back Window1 and show the latest update on window1
this.finish();
System.exit(0);
但是现在,在处理子窗口之后,我退出这个并返回到我以前的父窗口。一旦我去那里,我如何刷新我已经修改并需要在父窗口中显示最新图像的 imageView?