如何使用AsyncTask更新全局变量

时间:2014-05-30 20:18:21

标签: java android listview bitmap android-asynctask

我想做什么:我使用自定义"位置"将行放入ListView。适配器。我正在尝试将Bitmap添加到ListView的一行中。此位图来自URL。所以,我有一个全局变量public static Bitmap bitmap,并希望使用AsyncTask更新此变量。这是我的代码:

            try {
                String s = "";
                JSONArray jArray = new JSONArray(result);

                for (int i = 0; i < jArray.length(); i++) {
                    final JSONObject json = jArray.getJSONObject(i);
                    runOnUiThread(new Runnable() {
                        @Override
                        public void run() {

                            try {

                                //here I am calling my new task and giving it the ID to find the image
                                BitmapWorkerTask myTask = new BitmapWorkerTask(json.getInt("ID"));
                                myTask.execute();
                                adapter.add(new Location(bitmap, json
                                        .getString("PlaceTitle"), json
                                        .getString("PlaceDetails"), json
                                        .getString("PlaceDistance"), json
                                        .getString("PlaceUpdatedTime")));

                                bitmap = null;
                            } catch (JSONException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                            }

                        }
                    });

                }

            } catch (Exception e) {
                // TODO: handle exception
                Log.e("log_tag", "Error Parsing Data " + e.toString());
            }

这是我的AsyncTask

class BitmapWorkerTask extends AsyncTask<Integer, Void, Bitmap> {
    private int photoID = 0;

    public BitmapWorkerTask(int photoID) {
        // Use a WeakReference to ensure the ImageView can be garbage collected
        this.photoID = photoID;
    }

    // Decode image in background.
    @Override
    protected Bitmap doInBackground(Integer... params) {
        String initialURL = "http://afs.spotcontent.com/img/Places/Icons/";
        final String updatedURL = initialURL + photoID + ".jpg";
        Bitmap bitmap2 = null;

        try {
            bitmap2 = BitmapFactory.decodeStream((InputStream) new URL(
                    updatedURL).getContent());

        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        return bitmap2;
    }

    // Once complete, see if ImageView is still around and set bitmap.
    @Override
    protected void onPostExecute(Bitmap bitmap2) {
        bitmap = bitmap2;
    }
}

因此,对于每次迭代,我都在为AsyncTask提供一个用于查找图像的ID,然后(我希望)应该更新传递给适配器的全局Bitmap。当我运行我的应用时,每个列表的图片都是空的。关于我做错什么的任何想法?

1 个答案:

答案 0 :(得分:1)

考虑以下命令执行的可能顺序(记住任务在后台运行,因此顺序是非确定性的):

  1. myTask.execute()
  2. BitmapWorkerTask.doInBackground()
  3. adapter.Add(新位置(位图,.......
  4. BitmapWorkerTask.onPostExecute()
  5. 在步骤3中创建Location()对象时,传递的“位图”对象是全局对象指针。它的值尚无效,因为尚未调用onPostExecute()。因此,使用非位图对象创建Location对象。在第4步,当最终检索位图时,全局对象指针的值被更改(正确),但这不会影响已在第2步传递给Location的(空)位图对象...这就是为什么你在您的视图中看不到位图。

    您可以做的是将其他参数传递给BitmapWorkerTask构造函数:您可以传递Location对象(或底层位图)。从onPostExecute()开始,您可以使用检索到的位图更新该位置/位图对象。这里不需要全局变量。