0

我是安卓新手。谁能告诉我我做错了什么。我的 listView 不会更新!我想要一个包含图像的列表视图。我将在这里解释流程,我有一个ImageList.java作为我的主类,LazyLoader.java它扩展了 BaseAdapter。这里的图像是从存储在我的本地主机上的 xml 文件中检索的。这是什么工作,我使用 10.0.2.2 的本地主机没有问题,我在 LogCat 中获取了我的 xml。在 logcat 中一切正常,但视图没有更新。我想我对 inflate 的思考方式及其工作方式存在一些问题。所以一个很好的起点是看看LazyLoader.java 如果代码中的事情不清楚,请告诉我我会添加更多解释。

我已按照本教程对http://www.androidhive.info/2012/02/android-custom-listview-with-image-and-text/进行了更改asynctask

ImageList.java 这是我的 onCreate

@Override
protected void onCreate(Bundle savedInstanceState) {
 try{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
new loadSite().execute();
}
catch(Exception exp){
    Log.e("error", "ERROR RAISED HERE "+exp);
    exp.printStackTrace();
     }
}

异步就在这里

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



        @Override
        protected void onPreExecute() {
            super.onPreExecute();
        pDialog = new ProgressDialog(ImageList.this);
            pDialog.setMessage("Loading websites ...");
            pDialog.setIndeterminate(false);
            pDialog.setCancelable(false);
            pDialog.show();
        }

        @Override
        protected String doInBackground(String... args) {
            try{
                ArrayList<HashMap<String,String>> articlesList = new ArrayList<HashMap<String,String>>();
                XMLParser parser = new XMLParser();

                String xml = parser.getXmlFromUrl(URL);

                Document doc = parser.getDomElement(xml);

                NodeList nl = doc.getElementsByTagName(KEY_SONG);

                for(int i=0;i<nl.getLength();i++){
                     HashMap<String,String> map = new HashMap<String, String>();
                     Element elm = (Element) nl.item(i);
                     map.put(KEY_TITLE, parser.getValue(elm, KEY_TITLE));
                     map.put(KEY_THUMB_URL, parser.getValue(elm, KEY_THUMB_URL));
                     Log.e("URL",parser.getValue(elm, KEY_THUMB_URL));
                     articlesList.add(map);

                }
                list = (ListView)findViewById(R.id.list);
                //ListAdapter adapter = new SimpleAdapter(ImageList.this,articlesList, R.layout.list_row, new String[] {"list_image"},new int[]{R.id.list_image});
                adapter = new LazyAdapter(ImageList.this,articlesList);
                list.setAdapter(adapter);
                }
            catch(Exception exp){
                Log.e("Error", "EXCEPTION RAISED IN ASYNC "+exp);
                exp.printStackTrace();
            }

    return null;
        }
    @Override
    protected void onPostExecute(String result) {
         pDialog.dismiss();
         adapter.notifyDataSetChanged();
         Log.e("Notify","Dataset change notified");
    }
}

LazyAdapter 类在这里是在这里。它扩展了 BaseAdapter LazyAdapter.java

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    View vi = convertView;
    if(convertView==null){
        vi=inflater.inflate(R.layout.list_row,null);

    }
    ImageView thumb_image=(ImageView)vi.findViewById(R.id.list_image);
    TextView title = (TextView)vi.findViewById(R.id.title);
    HashMap<String,String> article = new HashMap<String, String>();
    article = data.get(position);
    title.setText(article.get(ImageList.KEY_TITLE));
    imageLoader.DisplayImage(article.get(ImageList.KEY_THUMB_URL), thumb_image);
    return vi;

}

XML,如果有人需要查看。

主.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
 <include layout="@layout/header"/>
<ListView
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:divider="#b5b5b5"
    android:dividerHeight="1dp"
    />
</LinearLayout>

list_row.xml

<?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:padding="5dip" >
    <LinearLayout android:id="@+id/thumbnail"
       android:layout_width="fill_parent"
       android:layout_height="wrap_content"
       android:padding="3dip"
       android:layout_alignParentLeft="true"
       android:layout_marginRight="5dip">

    <ImageView
        android:id="@+id/list_image"
        android:layout_width="fill_parent"
        android:layout_height="50dip"
        android:scaleType="centerCrop"  
        android:src="@drawable/nature"/>

</LinearLayout>
 <TextView
    android:id="@+id/title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Rihanna Love the way lie"
    android:textColor="#040404"
    android:typeface="sans"
    android:textSize="15dip"
    android:textStyle="bold"/>
</RelativeLayout>
4

1 回答 1

3

您不应该初始化 aLazyAdapter并将其设置为您的ListView内部doInBackground方法,因为操作视图必须在 UI 线程上完成,并且doInBackground在单独的线程上运行。

相反,我建议您将articlesList(适配器的数据集)从doInBackground 返回onPostExecute方法并初始化适配器并将其设置到同一方法内的列表中,因为onPostExecute始终在 UI 线程上运行 - 因此允许您操作视图。

于 2012-11-01T09:34:59.523 回答