显示活动后执行代码

时间:2012-07-19 22:36:06

标签: android android-asynctask android-activity

我正在尝试在显示活动后运行一些脚本,我正在从Web加载一些图像并动态地在活动上显示它们。我正在运行多个runnables,每个runnable调用一个Asynctask(读取图像并分配给ImageView,在onCreate函数中创建图像视图),但只有在所有runnables asynctasks完成后才显示活动。

我希望你能帮助我实现这个目标,我所看到的是显示活动,然后依次加载和显示图像。

public void onWindowFocusChanged(boolean hasFocus) {
    super.onWindowFocusChanged(hasFocus);

    if (!hasFocus)
        return;
    Handler h = new Handler();
    Runnable[] r;
    int i = 0;
    r = new Runnable[files.length];
    for (i = 0; i < files.length; i++) {
        final int j = i;
        r[i] = new Runnable() {
            public void run() {
                ViewGroup vg = (ViewGroup) findViewById(R.id.RootView);

                Log.v("ASYNC", "Starting Call " + j);
                // new BitmapWorkerTask().execute(img, i);
                new BitmapWorkerTask(img, j).execute();
                vg.invalidate();
            }
        };
        h.post(r[i]);
        Log.v("ASYNC", "Posted " + i);
    }
    return;
};

1 个答案:

答案 0 :(得分:0)

onWindowFocusChanged(boolean hasFocus)不是Activity生命周期方法。您应该在onCreate中解雇您的任务。如果加载需要很长时间,那么您可以显示某种进度微调器。