gpt4 book ai didi

android - 如何将参数传递给 Android AsnycTaskLoader

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

我正在尝试将参数传递给 AsyncTaskLoader。我该怎么做?

目前,我将我需要传递的内容放在一个单独的静态类中。无论如何?

public class NewsAsyncTaskLoader extends AsyncTaskLoader<List<Content>> {

private static final DbHelper dbHelper = DbHelperFactory.getDbHelper();

public FeedAsyncTaskLoader(Context context) {
super(context);
}

@Override
public List<Content> loadInBackground() {
List<Content> contents = DbHelper.getStream(FeedSections.getInstance().getCurrentSection());

feed.setContents(contents);

return feed;
}
}

最佳答案

将额外的参数传递给你的构造函数:

public FeedAsyncTaskLoader(Context context, String moreInfo) {
super(context);
// Do something with moreInfo
}

关于android - 如何将参数传递给 Android AsnycTaskLoader,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18775552/

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