我有一个我一直在研究的Android应用程序从服务器下载图像,将其读入位图并在ImageView上显示
这在大多数情况下都很有效,但每隔一段时间,它就会经历一个过程(有一个ProgressDialog说“获取图像......”)并且一旦完成它就不会显示任何内容。在logcat中没有任何东西甚至似乎与此有很大关系。
以下是代码:
Bitmap image = null;
HttpClient client = new DefaultHttpClient();
HttpGet get = new HttpGet(webService + "?cmd=get");
try
{
HttpResponse resp = client.execute(get);
Log.i("PhotoRouletteDebug", "Resp buffer size: " + (int)resp.getEntity().getContentLength());
InputStream is = resp.getEntity().getContent();
BufferedInputStream buf = new BufferedInputStream(is, (int)resp.getEntity().getContentLength());
image = BitmapFactory.decodeStream(buf);
// clean up
buf.close();
is.close();
即使没有显示任何内容,Resp内容长度始终会报告正确的大小,但仍然无法显示任何内容。
此代码是从AsyncTask调用的,但一次只调用一个任务。
这让我疯了,我不知道为什么它一直这样做。
编辑:以下是设置imageView
的代码// AsyncTask for Getting a new image from the queue
protected class GetImageTask extends AsyncTask<String, String, Bitmap>
{
protected void onPreExecute()
{
// lets show a progress dialog so the user knows something is going on
progressDialog = ProgressDialog.show(PhotoRoulette.this, "", "Fetching image...", true);
}
protected void onPostExecute (Bitmap image)
{
// we got a new photo so lets display it where it needs to be displayed
try
{
photoView = (ImageView)findViewById(R.id.photoView);
photoView.setImageBitmap(image);
}
catch (Exception e)
{
Log.e("Debug", "Something absolutely retarded happened", e);
}
// hide the progress dialog - we're all done
progressDialog.dismiss();
}
protected Bitmap doInBackground(String... urls)
{
// Get a new Bitmap Queue Image
Bitmap image = imageHandler.getQueueImage();
return image;
}
}
答案 0 :(得分:1)
您没有向我们展示显示图片的代码,因此我们不确定该代码是否正确。也许问题出在那里?
但是假设问题是图像被破坏了,这就是我开始调试的方法:用PushbackInputStream包裹buf
。读取buf中的字节并将其保存到文件中;然后将这些相同的字节推回PushbackInputStream
。然后将PushbackInputStream
传递给BitmapFactory.decodeStream
。如果图像显示成功,则删除文件(手动或以编程方式)。否则,您现在可以在闲暇时检查位图。