我有问题。我得到了一些代码,我不会全部放在这里,因为它太大了。但我有一个列表视图。我这样做:
lv = (ListView) findViewById(R.id.list);
(Here is normally some asynctask code and stuff)
// list adapter
ListAdapter adapter = new SimpleAdapter(MainActivity.this, placesListItems,
R.layout.list_item, new String[] { KEY_REFERENCE, KEY_NAME, KEY_VICINITY, KEY_DISTANCE,
KEY_LOCATION}, new int[] { R.id.reference, R.id.name, R.id.vicinity, R.id.radius, R.id.location});
// Adding data into listview
lv.setAdapter(adapter);
现在问题是我得到了一个网址,而网站上唯一的东西就是一张图片。它来自 Google Place Photos。现在我想要我的列表视图中的图像。所以在每个项目中都有另一个图像。
我可以使用 imageview 或 webview 来完成。
所以让我们看看 url 存储在这个:
KEY_URL;
imageview 或 webview 是这样的:
R.id.image;
我怎样才能做到这一点?
提前致谢!!