我们可以在不使用任何按钮doInBackground()
的情况下调用 onClick()
进程吗?我可以在onCreate()
方法中加载android中的应用程序吗?
答案 0 :(得分:2)
你可以自由地这样做。您不能直接致电doInBackground()
,但可以毫无问题地调用execute()
。
public class MyApp extends Application {
public void onCreate() {
super.onCreate();
new MyAsyncTask().execute();
}
}