假设我有一个类,其中包含名为fooTask
的内部类,它扩展了AsyncTask
,另一个名为getFoo()
的方法返回了一些int值。如果我在getFoo()
方法中调用此AsyncTask's doInBackground()
方法,是否会在主要或后台线程中执行此getFoo()
方法?
public class SomeClass extends Activity {
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
fooTask task = new fooTask();
task.execute();
}
private class fooTask extends AsyncTask<Void, Void, Integer>{
@Override
protected Integer doInBackground(Void... params) {
int foo = getFoo();
return foo;
}
}
private int getFoo(){
// Will this method be executed in main or background thread?
return 1;
}
}
答案 0 :(得分:1)
doInBackground内的所有内容都在后台运行,除非您在runOnUiThread内包含一些代码块
答案 1 :(得分:1)
答案 2 :(得分:1)
你在doInBackground中写的所有东西都在后台运行。它与您的GUI或不同的线程无关。
答案 3 :(得分:1)
它不是在后台(或主要)线程中运行的方法 - 它的字节码。但是,可以安排字节码在任何线程中执行。
特别是,如果您直接从主线程调用doInBackground
- 它将在主线程上运行。如果您按原样保留实现(不会直接访问此方法) - 它将在后台线程中运行。