gpt4 book ai didi

java - 在将 fragment 添加到 Activity 之前为 fragment 膨胀 View

转载 作者:行者123 更新时间:2023-11-30 10:46:22 25 4
gpt4 key购买 nike

我有一个 Activity 在两个 fragment 之间切换:一个显示 map ,另一个显示列表。

当 Activity 第一次启动时, map fragment 被添加到 FrameLayout 中,如下所示:

getSupportFragmentManager()
.beginTransaction()
.replace(R.id.content_frame, mapFragment)
.commit();

在这种情况下,第二个列表 fragment 还没有膨胀。每当用户在 map 上浏览时,我希望列表 fragment 根据用户在 map 上平移的位置进行更新。

所以基本上,我想做类似的事情

listFragment.updateList(...);

但是,由于列表 fragment 的 View 还没有膨胀,我还不能更新它的 View 。有没有一种方法可以做到这一点而不必等到将列表 fragment 添加到 FrameLayout?

基本上,我的最终目标是在 fragment 之间实现流畅的过渡;当用户切换到 ListView 时,我希望 View 尽快更新(如果我可以在将 View 添加到 Activity 之前更新 View ,就会发生这种情况)。

最佳答案

我认为您可以将更新后的 list 存储在您的 framgent 中:

public class yourFragment extends Fragment{
private ArrayList<Object> yourList;
}

当您更新列表时,您可以检查 if(getView() != null) -> 更新您的 ListView 或设置 yourList = yourUpdateList。然后,在您的 fragment 的 onCreateView 中,检查 yourList 是否为 null,如果不为 null,只需将数据设置到 ListView

关于java - 在将 fragment 添加到 Activity 之前为 fragment 膨胀 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36563296/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com