访问多个片段中的同一 Firebase Firestore

发布于 2025-01-13 18:57:53 字数 674 浏览 1 评论 0 原文

我有一个 ArrayList 存储在 Firestore 中。

我在 Fragment A 中有一个 RecyclerView,显示每个人的基本信息。

我有一个 onClickListener ,它用 Fragment B 替换 Fragment A ,并将单击项目上的人员的 UID 传递给 Fragment B< /strong> 也是如此。

我使用 Fragment B 的目标是通过某种方式使用 UID 从 Firestore 获取数据来显示所点击的 Person 项目的所有详细信息(以及添加更多数据的选项)代码>.

我的问题是,我是否应该为需要相同 Firestore 的每个 Fragment 实例化一个 Firebase Firestore ?或者我可以将 Person 对象作为一个包传递(尽管我不确定我所做的任何更改是否会反映在 Firebase 上)。

我认为这是一个非常昂贵的过程,我不确定我的替代方案是什么。

I have an ArrayList<Person> stored in Firestore.

I have a RecyclerView in Fragment A displaying the basic info of each person.

I have an onClickListener that replaces Fragment A with Fragment B and passes off the UID of the Person on Item clicked to Fragment B as well.

My goal with Fragment B is to display all of the details of the Person item clicked (and an option to add some more data) by somehow using the UID to get my data from Firestore.

My question is this, should I instantiate a Firebase Firestore for every Fragment that I need that same Firestore in? Or can I pass off the Person object as a bundle (though I'm not sure if any changes I make reflect on Firebase).

I thought it was a very costly process and I'm not sure what my alternatives are.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半窗疏影 2025-01-20 18:57:53
  1. FirebaseFirestore 是一个 Singleton 类,这意味着您在任何地方调用它:

FirebaseFirestore db = FirebaseFirestore.getInstance();

您将始终得到相同的对象。

  1. 如果 Person 类实现 Parcelable<,则可以将数据传递给第二个片段/a>.如果它实现了 Parcelable,您可以将 person 对象添加到捆绑包中并将其发送到另一个片段这样

  2. 如果“实例化 Firestore”实际上是指从 Firestore 检索数据,则本地 Firestore 缓存您的应用正在使用的数据副本,因此片段 B 将从本地缓存中检索数据。

  1. FirebaseFirestore is a Singleton class which means that any where you call this:

FirebaseFirestore db = FirebaseFirestore.getInstance();

You will always get the same object.

  1. You can pass off the data to the second fragment if the Person class implements Parcelable. If it implements Parcelable you can add the person object to a bundle and send it to the other fragment this way.

  2. If by "instantiating Firestore" you actually mean retrieving your data from Firestore , Firestore locally caches a copy of the data that your app is using, so fragment B will retrieve the data from the local cache.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文