我在异步任务的 doinBackround 方法中有两种方法。
第一种方法用于从云数据库中检索值。第二种方法用于在 msqlite 中保存值。
我的问题是当第二个方法被执行时,第一个方法将无法在需要时产生值,因此 null 被传递。请看一下代码片段。
@Override
protected Void doInBackground(Param... params) {
try {
List<Object> objectlist = mAsyncTaskFireDB.getobjectlist(params[0]);
// Output of this method to be passed into 2nd method.
Object[] listarray = new Object[objectlist.size()];
for(Integer i=0;i<objectlist.size();i++)
{
listarray[i] = objectlist.get(i);
}
mCat_messageDao.insertAll(listarray);
// 2nd method : Value of 1st method should come here however
getting null here
已经检查并用谷歌搜索但没有得到正确的解决方案。我想知道处理这种常见情况的最佳方法是什么。提前感谢您的帮助。
元芳怎么了
相关分类