我有一个 tabGroupActivity。在这个 tabGroupActivity 中,我以这种方式启动了一个名为“pideInformacion”的新活动:
Intent intent = new Intent(getParent(), pideInformacion.class);
TabGroupActivity parentActivity = (TabGroupActivity)getParent();
parentActivity.startChildActivity("pideInformacion", intent);
然后,应用程序从 pideInformacion 类打开一个名为 verMapaGps 的新活动:
Intent intent = new Intent(this, verMapaGps.class);
TabGroupActivity parentActivity = (TabGroupActivity)getParent();
parentActivity.startChildActivity("verMapaGps", intent);
我希望在 verMapaGps 中设置字符串值以返回 pideInformacion 类。
我看到这种访问父活动的方式,但我不知道如何访问父活动值来设置它。
Activity pideInfoActivity = (pideInformacion) getParent();
我无法使用 startActivityForResult,因为如果我使用这种方法,tabhost 会隐藏,而我想要的 tabbar 会显示在整个应用程序中。
提前致谢!