1

目前,当我开始我的一项活动时,我希望它访问多个网页并从那里下载东西(包括大约 8000 行 Json)。所有这些代码都需要很长时间。目前代码都是这样的。

@Override
protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_loading_mods);

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB)
    {
        getActionBar().setDisplayHomeAsUpEnabled(true);
    }

    // gets ad from google
    AdView adView = (AdView) this.findViewById(R.id.ad);
    adView.loadAd(new AdRequest());

    // prepare for a progress bar dialog
    bar = (ProgressBar) (this.findViewById(R.id.progressBar1));
    DisplayMetrics dm = new DisplayMetrics();
    getWindowManager().getDefaultDisplay().getMetrics(dm);
    int width = dm.widthPixels;
    bar.setMinimumWidth((width / 5 * 2));
    bar.setMax(3);
    bar.setVisibility(View.VISIBLE);

    TextView text = (TextView) findViewById(R.id.toMods);
    text.setText("Checking for updates...");

    UpdateChecker update = new UpdateChecker();
    update.execute(getBaseContext());

    try
    {
        if (update.get() == true)
        {
            bar.setMax(5);
            text.setText("Downloading update..");
            UpdateMods updater = new UpdateMods();
            updater.execute(getBaseContext());
        }
    }
    catch (InterruptedException e)
    {
        e.printStackTrace();
    }
    catch (ExecutionException e)
    {
        e.printStackTrace();
    }
}

现在的问题是,即使(据我所知)它是在 text.setText("Checking for updates...") 之后完成的,但要显示 Gui 需要很长时间,但是,gui 没有t 实际上会显示,直到它位于或超过 text.setText("Downloading update..") 行。当我在搜索有关如何操作的更多信息时,我发现了这张图片:http: //developer.android.com/images/activity_lifecycle.png

我很清楚我不希望它在 onCreate 中运行,因为获取 gui 需要很长时间。也不能在 onStart 或 onResume 中,因为我不希望它每次启动活动时都下载 8000+ 行文件。

那么我应该在哪里运行这段代码呢?(UpdateChecker 和 UpdateMods 是 2 个 ASyncTasks)

4

1 回答 1

5

你的问题在这里:

if (update.get() == true)

也就是说,实际上,“阻塞主应用程序线程并冻结 UI 直到doInBackground()完成”。

摆脱那条线。相反,根据任务onPostExecute()AsyncTask.

于 2013-04-30T15:05:48.493 回答