0

url to display the image. I already displayed the 'text' contents using the following code

protected void onPostExecute(final Boolean success) {
 if (dialog.isShowing()) {
dialog.dismiss();
 }
 ListAdapter adapter = new SimpleAdapter(context, jsonlist,
 R.layout.list_item, new String[] { ID, TITLE,
  LOGO}, new int[] {
  R.id.flyer_id, R.id.title, R.id.logo
   });
 setListAdapter(adapter);
lv = getListView();   
  }
4

1 回答 1

2

Try loading images using lazy loading concept.There is a good example mentioned in github. Try this link https://github.com/thest1/LazyList

于 2013-05-02T09:36:15.740 回答