我想从服务器显示图像。实际上我需要显示一个段落以及一个图像。我为此选择了一个列表视图。 目前我正在显示段落,但是当我试图显示图像时它不起作用。请帮帮我...
我的代码:
private class ListAdapter extends ArrayAdapter<UserBO> {
--
--
--
-- public View getView(int position, View convertView, ViewGroup parent) {
View view = convertView;
try {
if (view == null) {
LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = vi.inflate(R.layout.list_item, null);
// --CloneChangeRequired(list_item)
}
final UserBO listItem = mList.get(position); // --CloneChangeRequired
if (listItem != null) {
--
--
--
--
imageUrl = "http://server.com//folder/"+ array.get(0);
((TextView) view.findViewById(R.id.description))
.setText(listItem.getdesc()));
downloadFile(imageUrl);
----
--
}
}
}
}
void downloadFile(String fileUrl) {
URL myFileUrl = null;
try {
myFileUrl = new URL(fileUrl);
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
HttpURLConnection conn = (HttpURLConnection) myFileUrl
.openConnection();
conn.setDoInput(true);
conn.connect();
int length = conn.getContentLength();
InputStream is = conn.getInputStream();
bmImg = BitmapFactory.decodeStream(is);
imView.setImageBitmap(bmImg);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
答案 0 :(得分:0)
给出了什么错误?提供堆栈跟踪。您也可以使用延迟加载http://ballardhack.wordpress.com/2010/04/05/loading-remote-images-in-a-listview-on-android/
答案 1 :(得分:0)
使用以下链接的代码下载图像并显示到列表视图中。