Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有三个意图A,B,C:
我从 A 调用意图 B,从 B 调用 C。在意图 C 中,我在数据库中保存了一条记录,现在我希望用户重定向到 A。我在 A 中使用 Activity 作为结果方法。
任何用于理解上述内容的好的教程或链接。
PS:我是android开发的新手。
使用startActivityForResult
当 C 保存数据时,向 B 返回一个成功代码。然后在收到此成功代码时在 B 上调用 finish()。你现在会看到A。
如果要通知 A 保存成功。然后在 A 和 B 之间执行相同的 startActivityForResult。