我有一个Lure
类,其中包含一个ArrayList
类LureImage
,如下面的代码所示。在我的存储库中,我进行数据库调用以获取LiveData<List<Lure>>
,然后我执行一个AsyncTask
以获取List<LureImage>
每个 Lure 的。我编写的代码的问题是它并不总是List<LureImage>
从数据库中获取,结果是有时我的 RecyclerView 显示图像,有时它不显示。(我在下面显示我的意思的截图)
public class Lure implements Serializable {
private static final String TAG = "LURE";
@PrimaryKey(autoGenerate = true)
private int id;
private String _lureName;
private String _lureNotes;
@Ignore
private List<LureImage> lureImages = new ArrayList<>();
public Lure() {
}
@Ignore
public Lure(String lureName, String lureNotes) {
this._lureName = lureName;
this._lureNotes = lureNotes;
}
}
从我的 LureRepository 类中,我设法从数据库中获取 LiveData>,然后我希望每个 Lure 从数据库中获取它们对应的 Image 类。我设法使用这种方法做到了这一点。
public LiveData<List<Lure>> getAllLures() {
LiveData<List<Lure>> luresLiveData = lureDao.getAllLures();
luresLiveData = Transformations.map(luresLiveData, new Function<List<Lure>, List<Lure>>() {
@Override
public List<Lure> apply(List<Lure> input) {
for (final Lure lure : input) {
new GetLureImagesTask(lureDao).execute(lure);
}
return input;
}
});
return luresLiveData;
}
private static class GetLureImagesTask extends AsyncTask<Lure,Void,Void> {
private LureDao lureDao;
public GetLureImagesTask(LureDao lureDao) {
this.lureDao = lureDao;
}
@Override
protected Void doInBackground(Lure... lures) {
lures[0].setLureImages(lureDao.getLureImages(lures[0].getId()));
return null;
}
}