我是java和android开发的新手。我试图找到这个问题的答案,但似乎很明显,所以没有人问过...... 我用这个例子来显示图像:
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
String str="http://logproj.500mb.net/image.php?id=8";
ImageView imView;
imView = (ImageView)findViewById(R.id.image);
try{
url = new URL(str);
}
catch(MalformedURLException e)
{
e.printStackTrace();
}
try{
HttpURLConnection conn = (HttpURLConnection)url.openConnection();
conn.setDoInput(true);
conn.connect();
int length = conn.getContentLength();
int[] bitmapData =new int[length];
byte[] bitmapData2 =new byte[length];
InputStream is = conn.getInputStream();
bmp = BitmapFactory.decodeStream(is);
imView.setImageBitmap(bmp);
} catch (IOException e)
{
e.printStackTrace();
}
}
它适用于jpg图像,但我的图像是bmp,应用程序崩溃或“意外停止”。
我希望你能解决这个问题。提前谢谢。
答案 0 :(得分:2)
使用apaches web客户端尝试此操作。这应该工作。让我知道。
public static Bitmap decodeFromUrl(HttpClient client, URL url, Config bitmapCOnfig)
{
HttpResponse response=null;
Bitmap b=null;
InputStream instream=null;
BitmapFactory.Options decodeOptions = new BitmapFactory.Options();
decodeOptions.inPreferredConfig = bitmapCOnfig;
try
{
HttpGet request = new HttpGet(url.toURI());
response = client.execute(request);
if (response.getStatusLine().getStatusCode() != 200)
{
Log.d("Bad response on " + url.toString());
Log.d("http response: " + response.getStatusLine().toString());
return null;
}
BufferedHttpEntity bufHttpEntity = new BufferedHttpEntity(response.getEntity());
instream = bufHttpEntity.getContent();
return BitmapFactory.decodeStream(instream, null, decodeOptions);
}
catch (Exception ex)
{
Log.d("error decoding bitmap from:" + url, ex);
if (response != null)
{
Log.d("http status: " + response.getStatusLine().getStatusCode());
}
return null;
}
finally
{
if (instream != null)
{
try {
instream.close();
} catch (IOException e) {
Log.d("error closing stream", e);
}
}
}
}
不要忘记在异步任务中调用此函数。
答案 1 :(得分:2)
首先 - 您不应该在主UI线程上运行http连接。在较新版本的android上,这会抛出一个networkOnUIThreadException,导致一个强制关闭。
我建议编写一个AsyncTask
来在后台线程上运行下载。 WIIJBD编写的decodeFromUrl看起来应该可以正常工作,所以如果你调用该函数你可以让它将位图返回到UI线程onPostExecute()并在ImageView中设置
异步任务教程:http://www.vogella.com/articles/AndroidPerformance/article.html
还有其他问题让我知道
答案 2 :(得分:0)
不要使用.bmp文件。请改用.png文件。或.gif - 这在Android上不太可取,但确实有用。
答案 3 :(得分:0)
我曾经使用图像处理过一些Android应用程序,如果图像很大,应用程序崩溃了很多,所以我用Google搜索并在Android开发者网络上找到了这个,非常好。
http://developer.android.com/training/displaying-bitmaps/index.html
我将向您推荐的是,您可以将图像下载并保存到外部存储设备(如SD卡),然后加载并显示,这次您可以根据内存使用情况降低其质量。
同样在您的应用中下载图片是一个非常耗时的部分,所以最好将这些代码放到另一个线程或AsyncTask
(更好,IMO),因此从下载时它不会停止UI主线程互联网,完成后你也可以显示它。
希望它有所帮助。