我有一个启动器风格的应用程序,您可以在其中启动另一个应用程序。在启动该应用程序时,我希望我的应用程序记下一些事情,基本上是记录时间等。
所以我有一段代码,其结构基本上如下所示:
appSelectedListener{
runSelectedApp;
private class Background extends AsyncTask<Void, Void, Void>{
protected void doInBackground(){
//executable code
}
}
}
仅这些行,如果代码关闭,我很抱歉,但我实际上没有写任何东西,但我只想先处理这些东西。My question is, when the selected app is brought to the foreground, my app goes to the background. doInBackground() 中的可执行代码是否仍然可以运行?还是我的应用程序必须在前台?