显示图片的网址。 我已经显示了“文字”内容 使用以下代码
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();
}