无法通过 imageloader 类在列表视图中显示图像

Posted

技术标签:

【中文标题】无法通过 imageloader 类在列表视图中显示图像【英文标题】:Unable to show image in listview by imageloader class 【发布时间】:2015-10-26 07:58:56 【问题描述】:

我在我的应用程序中使用了视图。我想使用 POST 方法在我的列表中显示图像。我通过 POST 方法获得了图像 url,但无法在列表中显示它。我的部分代码 sn-p 在这里....

 private class GetContacts extends AsyncTask<Void, Void, Void> 

        @Override
        protected void onPreExecute() 
            super.onPreExecute();
            // Showing progress dialog
            pDialog = new ProgressDialog(Home1.this);
            pDialog.setMessage("Please wait....");
            pDialog.setCancelable(false);
            pDialog.show();

        

        @Override
        protected Void doInBackground(Void... arg0) 
            // Creating service handler class instance
            ServiceHandler1 sh = new ServiceHandler1(apikey, latitude, longitude);


            // Making a request to url and getting response
            String jsonStr = sh.makeServiceCall(url, ServiceHandler1.POST);

            Log.d("Response: ", "> " + jsonStr);


            if (jsonStr != null) 
                try 
                    JSONObject jsonObj = new JSONObject(jsonStr);

                    // Getting JSON Array node
                    contacts = jsonObj.getJSONArray(TAG_CONTACTS);

                    // looping through All Contacts
                    for (int i = 0; i < contacts.length(); i++) 
                        JSONObject c = contacts.getJSONObject(i);

                        String username = c.getString(TAG_USERNAME);
                        String name = c.getString(TAG_NAME);
                        String email = c.getString(TAG_EMAIL);
                        String address = c.getString(TAG_ADDRESS);
                        String contact_number = c.getString(TAG_CONTACT_NUMBER);
                        String postalcode = c.getString(TAG_POSTAL_CODE);
                        String image = c.getString(TAG_IMAGE);
                        Log.v("as.",image);

                        ImageLoader imageLoader = new ImageLoader(getApplicationContext());
                        ImageView Profileimage = (ImageView) findViewById(R.id.logo);
                        imageLoader.DisplayImage(image, Profileimage);


                        // tmp hashmap for single contact
                        HashMap<String, String> contact = new HashMap<String, String>();

                        // adding each child node to HashMap key => value

                        contact.put(TAG_NAME, name);
                        contact.put(TAG_IMAGE, image);
                        contact.put(TAG_EMAIL, email);
                        // contact.put(TAG_ADDRESS, address);
                        contact.put(TAG_ADDRESS, address);
                        // adding contact to contact list
                        contact.put(TAG_USERNAME, username);
                        contact.put(TAG_POSTAL_CODE, postalcode);
                        contact.put(TAG_CONTACT_NUMBER, contact_number);

                        contactList.add(contact);


                    
                 catch (JSONException e) 
                    e.printStackTrace();
                
             else 
                Log.e("ServiceHandler", "Couldn't get any data from the url");
            

            return null;
        


        @Override
        protected void onPostExecute(Void result) 
            super.onPostExecute(result);
            // Dismiss the progress dialog
            if (pDialog.isShowing())
                pDialog.dismiss();

            ListAdapter adapter = new SimpleAdapter(
                    Home1.this, contactList,
                    R.layout.list_item1, new String[]TAG_EMAIL, TAG_USERNAME, TAG_ADDRESS, TAG_POSTAL_CODE, TAG_CONTACT_NUMBER,
            , new int[]
                   R.id.company, R.id.description, R.id.address, R.id.operating_hours, R.id.contact);





            setListAdapter(adapter);
        

    

我已经使用图像加载器类来转换图像 url...请大家帮帮我

请建议我如何在 postExecute() 中解析图像...

  @Override
        protected void onPostExecute(Void result) 
            super.onPostExecute(result);
            // Dismiss the progress dialog
            if (pDialog.isShowing())
                pDialog.dismiss();

            ListAdapter adapter = new SimpleAdapter(
                    Home1.this, contactList,
                    R.layout.list_item1, new String[]TAG_EMAIL, TAG_USERNAME, TAG_ADDRESS, TAG_POSTAL_CODE, TAG_CONTACT_NUMBER,
            , new int[]
                   R.id.company, R.id.description, R.id.address, R.id.operating_hours, R.id.contact);


            ImageLoader imageLoader = new ImageLoader(getApplicationContext());
            ImageView Profileimage = (ImageView) findViewById(R.id.logo);
            imageLoader.DisplayImage(TAG_IMAGE, Profileimage);



            setListAdapter(adapter);
        

    

【问题讨论】:

ImageLoader 使用的是哪个库?尝试移动 imageLoader.DisplayImage(image, Profileimage);在 onPostExecute() 方法中。 @ProkashSarkar 当我在 Post() 方法中使用它时,它会给出 java.lang.NullPointerException ........ 如果您在调用 AsyncTask 时已经设置了适配器,请尝试调用 getListAdapter().notifyDataSetChanged() 而不是创建新的。 你在使用任何库吗? @ProkashSarkar 我使用了这个代码......androidhive.info/2012/07/android-loading-image-from-url-http 【参考方案1】:

您需要创建自定义Listview 适配器来完成此任务。请检查loading-image-asynchronously-in-android-listview 链接以创建一个。在您的后执行方法中,您必须创建适配器对象,然后传递包含图像 URL 的 contactList 数组列表。

在链接中,您将获得在listview 中显示图像的完整代码以及使用Imageloader 库下载图像的代码。

如果有帮助,请告诉我。

【讨论】:

以上是关于无法通过 imageloader 类在列表视图中显示图像的主要内容,如果未能解决你的问题,请参考以下文章

在vs2013中,c++中set容器定义对象时,参数列表中显式调用greater无法被识别,啥原因?

从列表或元组中显式选择项目

查询失败错误:无法通过前缀查询视图。匹配视图的部分列表是

是否执行了视图列集中的所有函数,即使它们没有在查询中显式引用?

如何在android中使用imageloader释放位图内存?

Android imageloader imageLoader.displayImage显图片间长了内存缓慢上升导致溢出