在我的应用程序中有十个活动。
当我按下后退按钮时,10 个屏幕已保存历史记录。但是当我单击下一个按钮时,新屏幕没有任何历史数据。
单击下一步按钮时如何维护历史记录?我的意图代码是
Bundle bundle = getIntent().getExtras();
String Group = bundle.getString("GroupApVehicle");
Intent log = new Intent(EngineCompartment.this, FrontAxle.class);
Bundle bun = new Bundle();
bun.putString("Group", Group);
bun.putString("ECSCORE", _StrpretriScoreCount);
System.out.println("Enginegroup" + Group);
bun.putString("TestIDFA", strtestid);
log.putExtras(bun);
startActivityForResult(log,IPC_ID);