gpt4 book ai didi

Android:创建一个定期运行并执行 UI 任务的后台线程?

转载 作者:搜寻专家 更新时间:2023-11-01 08:40:33 24 4
gpt4 key购买 nike

好的,所以我知道如何执行后台任务,我知道如何执行周期性任务(使用 handle postdelayed 和 runnable),我也知道如何从后台线程(通过处理程序)执行 UI 任务,但我不是能够执行在 UI 线程上执行某些操作的周期性后台任务。

我试图每分钟执行一些后台任务,我必须在其中进行网络调用。通话结束后,根据输出,我必须更新 UI。我试着做这样的事情

private void DoTask() {
Thread thread = new Thread() {
public void run() {
Looper.prepare();
final Handler handler = new Handler();
handler.post(netRunnable);
Looper.loop();
}
};
thread.start();
}

Runnable netRunnable = new Runnable() {
@Override
public void run() {
handler.getLooper().prepare();
final Handler handler1 = new Handler(Looper.getMainLooper());
if ( do background work and check result){
handler1.post(new Runnable() {
@Override
public void run() {
//Do UI Task
}
});
}
handler.getLooper().loop();
handler.postDelayed(netRunnable, 60000);
}
}

我知道我的实现可能存在一些根本性缺陷,但我不知道如何正确完成这项任务。现在它给出了 Only one Looper may be created per thread 的错误。我明白它想说什么。但是任何人都可以建议以正确的方式做到这一点。

最佳答案

您可以使用异步任务。这些是专为它设计的:

http://developer.android.com/reference/android/os/AsyncTask.html

它允许你在后台执行网络调用,然后当你得到结果时,在 UI 线程上执行一个 Action

声明:

 private class MyTask extends AsyncTask<Input, Void, Output> {
protected Output doInBackground(Input... inputs) {
// do something on the network
return myOutput;// use this to transmit your result
}

protected void onPostExecute(Output result) {
// do something on UI thread with the result
}

如果你想重复它,只需创建一个 runnable 来启动它,并在每次调用后安排下一个:

MyTask myTask;
Handler handler = new Handler();

Runnable myRunnable = new Runnable() {
@Override
public void run() {
MyTask myTask = new MyTask();
myTask.execute(myArg);
handler.postDelayed(netRunnable, 60000); // schedule next call
}
}

首次启动:

handler.postDelayed(myRunnable, 60000);

或者,如果您想立即启动它:

handler.post(myRunnable);

不要忘记在您的 Activity 被销毁时取消任务:

myTask.cancel(true);

关于Android:创建一个定期运行并执行 UI 任务的后台线程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33041573/

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