0

我目前正在开发一个使用 SimpleAdapter 将图像显示到我的列表视图中的 android 应用程序。我的图像是从我的在线服务器检索的。检索图像后,我尝试显示图像,但没有显示任何内容,也没有错误。

下面是我的代码

class ListApplicant extends AsyncTask<String, String, String> {

    // Before starting background thread Show Progress Dialog
    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        pDialog = new ProgressDialog(SignUpApplicantActivity.this);
        pDialog.setIndeterminate(false);
        pDialog.setCancelable(false);
    }

    // getting All applicants from URL
    protected String doInBackground(String... args) {
        // Building Parameters
        List<NameValuePair> params = new ArrayList<NameValuePair>();
        params.add(new BasicNameValuePair("eid", eid));

        // getting JSON string from URL
        JSONObject json = jParser.makeHttpRequest(url_list_applicant,
                "GET", params);

        // Check your log cat for JSON response
        Log.d("All applicants: ", json.toString());

        try {
            // Checking for SUCCESS TAG
            int success = json.getInt(TAG_SUCCESS);

            if (success == 1) {
                // applicants found
                // Getting Array of applicants
                applicant = json.getJSONArray(TAG_APPLICANTS);

                // looping through All applicants
                for (int i = 0; i < applicant.length(); i++) {
                    JSONObject c = applicant.getJSONObject(i);

                    // Storing each JSON item in variable
                    String uid = c.getString(TAG_UID);
                    String name = c.getString(TAG_NAME);
                    String overall = c.getString(TAG_OVERALL);
                    String apply_datetime = c.getString(TAG_APPLY_DATETIME);

                    // creating new HashMap
                    // HashMap<String, String> map = new HashMap<String,
                    // String>();

                    // IMAGE HASHMAP
                    HashMap<String, String> map = new HashMap<String, String>();

                    // adding each child node to HashMap key (value)
                    map.put(TAG_UID, uid);
                    map.put(TAG_NAME, name);
                    map.put(TAG_OVERALL, overall);
                    map.put(TAG_APPLY_DATETIME, apply_datetime);

                    // adding HashList to ArrayList
                    // applicantsList.add(map);

                    // LISTING IMAGE TO LISTVIEW
                    try {
                        imageURL = c.getString(TAG_PHOTO);

                        InputStream is = (InputStream) new URL(
                                "http://ec2-175-41-164-218.ap-southeast-1.compute.amazonaws.com/android/images/"
                                        + imageURL).getContent();
                        d = Drawable.createFromStream(is, "src name");
                    } catch (Exception e) {
                        e.printStackTrace();
                    }

                    map.put(TAG_PHOTO, d.toString());

                    // adding HashList to ArrayList
                    applicantsList.add(map);
                }
            }
        } catch (JSONException e) {
            e.printStackTrace();
        }

        return null;
    }

    // After completing background task Dismiss the progress dialog
    protected void onPostExecute(String file_url) {
        // dismiss the dialog after getting all applicants
        pDialog.dismiss();
        // updating UI from Background Thread
        runOnUiThread(new Runnable() {
            public void run() {
                if (applicantsList.isEmpty()) {
                    applicantDisplay
                            .setText("No applicants have signed up yet");
                } else {

                    //Updating parsed JSON data into ListView

                    adapter = new SimpleAdapter(
                            SignUpApplicantActivity.this, applicantsList,
                            R.layout.list_applicant, new String[] {
                                    TAG_UID, TAG_NAME, TAG_OVERALL,
                                    TAG_APPLY_DATETIME, TAG_PHOTO },
                            new int[] { R.id.applicantUid,
                                    R.id.applicantName,
                                    R.id.applicantOverall,
                                    R.id.apply_datetime, R.id.list_image });
                    // updating listView
                    setListAdapter(adapter);
                }
            }
        });
    }
}
4

1 回答 1

1

问题在这里:

map.put(TAG_PHOTO, d.toString());

您将该键设置为一个字符串"Drawable@0x12345678",然后将其绑定到R.id.list_image我假设是一个 ImageView。那是行不通的。

我没有像那样使用过 Drawable,但我在 Bitmap 上取得了成功:

Bitmap bitmap = BitmapFactory.decodeStream(is);

然后我覆盖bindView了我的适配器来设置图像:

public void bindView(View view, Context context, Cursor cursor) {
    // do the default stuff
    super.bindView(view, context, cursor);

    // now set the image
    ImageView imgView = (ImageView) view.findViewById(R.id.imageView1);
    imgView.setImageBitmap(bitmap);
}

ASimpleAdapter没有bindView方法,因此您可以提供ViewBinder

mySimpleAdapter.setViewBinder(new SimpleAdapter.ViewBinder() {
    @Override
    public boolean setViewValue(View view, Object data, String textRepresentation) {
        if (view.getId().equals(R.id.my_img_view_id)) {
            ((ImageView) view).setImageBitmap(bitmap);

            // we have successfully bound this view
            return true;
        } else {
            // allow default binding to occur
            return false;
        }
    }
});
于 2012-11-21T04:43:18.953 回答