gpt4 book ai didi

java - 如何在 Android 中将 Swingworker 更改为 AsyncTask?

转载 作者:行者123 更新时间:2023-12-01 15:48:48 26 4
gpt4 key购买 nike

如何在 Android 中将 Swingworker 更改为 AsyncTask?

我的代码如下。

private void showWeather() {
// TODO Auto-generated method stub
SwingWorker worker = new SwingWorker<WeatherInfo,Object>()
{
public WeatherInfo doInBackground()
{
YahooWeather yahooWeather = new YahooWeather();
return yahooWeather.getWeatherInfo();
}
public void done()
{
try {
WeatherInfo wInfo = get(); // get WeatherInfo result from background thread
updateGUI(wInfo);
}
catch(Exception e){}
}
};
worker.execute();
}

最佳答案

您应该使用AsyncTask相反

关于java - 如何在 Android 中将 Swingworker 更改为 AsyncTask?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6545817/

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