gpt4 book ai didi

java - Android 中是否可以链接异步任务?

转载 作者:行者123 更新时间:2023-12-02 02:09:47 25 4
gpt4 key购买 nike

我一直在致力于我的个人项目,以制作一个允许简单锻炼跟踪器的应用程序。我之前使用文件 I/O 执行所有操作,但从那时起我尝试转向数据库,因为我认为它会更优雅。

我正在使用基本存储库模式在 Android 应用程序上实现 Room 持久库:Fragment->ViewModel->Repository->DAO。

目前,我对数据库的查询非常简单。我只是想获得概念证明,看看我想如何与数据库交互。我有一种方法可以获取用户当前正在进行的锻炼,然后可以获取与该锻炼相关的所有锻炼。我见过的大多数教程都使用 LiveData 对象,但我觉得这对我来说太过分了,因为一旦获得数据,我就不再需要从数据库进行任何更新,因此实时更新只是对性能的必要负担。当我使用 LiveData 对象时,我也遇到了我在此处概述的类似问题。

我有一个想法,让两个异步任务在我的 fragment 中的“链”中运行,其中 UI 实际更新。第一个异步任务获取当前锻炼,完成后,它会启动下一个任务来获取该锻炼的练习。

我发现有时当前的锻炼实际上并没有从 View 模型中获取。通过调试,我发现这不是查询的问题。在 View 模型类中,该值始终存在。这似乎是 fragment 中异步任务的问题。

此外,每当确实找到当前锻炼,然后开始填充练习的下一步时,我就会开始在返回的练习中发现间隙。对于从数据库返回的大型列表,我开始看到列表中从索引 300 左右开始的空白(下面的错误消息)。

我有一种感觉,我下面的代码可能很幼稚,它没有做我认为它正在做的事情。我认为异步任务中的 doInBackground 将需要执行异步 Room 数据库查询所需的时间,然后一旦完成,它将调用 onPostExecute() ,这将在链中进一步推进。

如果需要,我可以共享数据库类中的代码,但我不想被太多代码淹没,特别是因为 View 模型类和存储库中的结果总是很好。问题似乎仅与 fragment 中的代码有关。

    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_workout,container,false);
entities = new ArrayList<>();
/*
Set up the view models
*/
logModel = ViewModelProviders.of(getActivity()).get(LogViewModel.class);
workoutModel = ViewModelProviders.of(getActivity()).get(WorkoutViewModel.class);

GetCurrentWorkoutTask task = new GetCurrentWorkoutTask();
task.execute();
return view;
}

private class GetCurrentWorkoutTask extends AsyncTask<Void, Void, Void>{

@Override
protected Void doInBackground(Void... voids) {
// get the current workout from the database
logModel.getCurrentWorkout(); // view model then calls an async method to query the database
return null;
}

@Override
protected void onPostExecute(Void result) {
if(logModel.getCurrentWorkoutResult()!=null) {
// database found a workout, so assign it then move to the next stop in the chain
currentWorkout = logModel.getCurrentWorkoutResult();
Log.d("TAG","CurrentWorkout: "+currentWorkout);
getExercises();
}
else{
// no workout found,error
Log.d("TAG","Get current workout result was null!");
}
}
}

public void getExercises(){
GetExercisesTask task = new GetExercisesTask();
task.execute();
}

private class GetExercisesTask extends AsyncTask<Void, Void, Void>{

@Override
protected Void doInBackground(Void... voids) {
// get the exercises from the database
workoutModel.getExercises(currentWorkout); // view model then calls an async method to query the database
return null;
}

@Override
protected void onPostExecute(Void result) {
if(workoutModel.getExercisesResult()!=null){
// all of the exercises have been loaded into the view model's list member variable since the query is complete
printExercises(workoutModel.getExercisesResult());
}
else{
Log.d("TAG","Get exercises result was null!");
}
}
}

public void printExercises(ArrayList<WorkoutEntity> rawData){
Log.d("TAG","Rawdata size: "+rawData.size());
int count = 0;
for(WorkoutEntity entity : rawData){
Log.d("TAG","Entity is: "+entity.toString());
count++;
}
Log.d("TAG","Count is: "+count);
}

现在,我只是使用 for 循环将 1000 条记录插入数据库,并将日期指定为计数器。大小始终为 1000,但此处显示它永远不会达到第 1000 天,因为这是它从 printExercises 方法停止的位置。

天数:807

天数:821

天:822

天数:823

看看它是如何从 807 跳到 821 的吗?每次也不同,这就是为什么我确信我只是错误地理解了异步任务的功能,但无法找到任何东西来回答我的问题。此外,在 printExercises() 方法中循环结果时应该打印计数的日志消息永远不会被调用。

我有一个理论,可能是因为我在 doInBackground 中返回 null,并且我需要直接从 viewModel 方法返回某些内容,以便任务知道异步调用已完成。我会尝试明天早上这样做,但想发布此内容,以防其他人能给我任何见解,因为我已经盯着它看了几个小时,但没有取得任何进展。

最佳答案

经过更多研究后发现,这实际上只是 logcat 的问题。我通过应用程序进行了调试,发现列表是完整的,没有间隙,所以我猜想同时发生这么多 logcat 会导致一些奇怪的行为。

关于java - Android 中是否可以链接异步任务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57335211/

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