gpt4 book ai didi

android - 引用旧 fragment 的回调方法

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:17:21 25 4
gpt4 key购买 nike

我有一个包含 Fragment 的 Fragment Activity ,Fragment 启动一个下载一些数据的 Asynctask,我在我的 Fragment 中实现了一个回调方法,它更新了适配器和 ListView 中的一些值。我遇到的问题如下:这是我的 onCreateView 方法(重要部分):

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
list=(PullToRefreshListView)v1.findViewById(R.id.listapull);
adapterList=new ListViewAdapter(secciones, mContext);
}

当我在 AsyncTask 运行时旋转设备时,doInBackground() 方法继续运行,然后在执行后触发监听器并在我的 fragment 中启动回调方法,这个方法有我的适配器和我的旧引用列表显示: enter image description here

fragment 及其内容在发生方向更改时重新创建,这是正确的,但是有谁知道为什么回调方法保留对在方向更改之前创建的适配器和 ListView 的引用?

编辑:

我有一个像这样执行异步任务的按钮:

asyncRefresh = new PullRefreshTask(taskContext, mContext, secciones);
asyncRefresh.setUpdatePull2RefreshListener(this);
asyncRefresh.execute();

如果用户按下按钮,asyncTask 会将旧的 Fragment 设置为监听器,并且在 asynctask 运行时发生方向更改时,我认为激活的回调方法是来自新创建的 fragment 方法的方法,但我不是确定了。

编辑 2:

我已经解决了我的问题,正如我在第一次编辑中所说的那样,正在为旧 fragment 调用回调方法。所以我所做的是将我的 asynctask 保存在另一个名为“Info”的类中的变量中,并在创建 View 时这样做:

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
list=(PullToRefreshListView)v1.findViewById(R.id.listapull);
adapterList=new ListViewAdapter(secciones, mContext);
PullRefreshTasktask task = Info.getAsyncTask();
asyncRefresh = task;
asyncRefresh.setUpdatePull2RefreshListener(this);
}

通过这种方式,我在

中设置了 fragment 的新引用

setUpdatePull2RefreshListener()

运行asynctask的方法

最佳答案

...does anyone knows why the call back method is keeping the reference to the adapter and listview that where created before the orientation change?

(这个答案是在不知道您的回调实现或您的 AsyncTask 外观的情况下得出的)为什么回调不应该保留对旧 fragment 的引用?您在 Button 的监听器中设置了 current Fragment 实例,然后在任务运行时进行设备旋转。您的 Fragment 中没有任何代码,因为它在配置更改后重建,将更新 AsyncTask 中的回调实例以指向新 fragment 。根据您使用该 Fragment 的方式,您可以使用 Fragment.setRetainInstance()方法将防止 Fragment 被销毁,因此即使在旋转之后您的任务也将具有相同的回调实例。也看看 an answer来自一位 Android 工程师关于这个特定问题的信息。

关于android - 引用旧 fragment 的回调方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13518049/

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