我正在尝试显示网址中的图片,该图片可能比屏幕尺寸大。我有点工作,但我希望它可以缩放以适应屏幕,当屏幕方向改变时我也有问题。图像很小,我希望它的宽度也可以缩放到屏幕上。 (在这两种情况下,我希望图像用滚动条填充屏幕宽度(如果需要高度)。
这是我的ImageView:
<ImageView android:id="@+id/ImageView01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="fitCenter"
android:adjustViewBounds="true">
</ImageView>
以下是加载图像的java代码:(为简单起见,删除了一些错误处理代码)
Object content = null;
try{
URL url = new URL("http://farm1.static.flickr.com/150/399390737_7a3d508730_b.jpg");
content = url.getContent();
}
catch(Exception ex)
{
ex.printStackTrace();
}
InputStream is = (InputStream)content;
Drawable image = Drawable.createFromStream(is, "src");
Image01.setImageDrawable(image);
我尝试过android:scaleType的不同设置。如果以前曾问过这个问题,我很抱歉。我已经完成了很多关于这个主题的教程,但它们似乎对我没用。不确定它是否与图像的加载方式有关。 (来自网络而不是本地资源)
另一个问题是有时图像甚至无法加载。没有运行时错误,我在ImageView中什么都没得到。
如果您需要更多信息或说明,请与我们联系。
答案 0 :(得分:9)
关于“有时图像甚至不加载”的问题与上下文有关,所以我用这个函数来解决这个问题
public Object fetch(String address) throws MalformedURLException,
IOException {
URL url = new URL(address);
Object content = url.getContent();
return content;
}
private Drawable ImageOperations(Context ctx, String url) {
try {
InputStream is = (InputStream) this.fetch(url);
Drawable d = Drawable.createFromStream(is, "src");
return d;
} catch (MalformedURLException e) {
return null;
} catch (IOException e) {
return null;
}
}
所以要用图片填充屏幕宽度,你必须有这样的代码
try{
String url = "http://farm1.static.flickr.com/150/399390737_7a3d508730_b.jpg";
Drawable image =ImageOperations(this,url);
Image01.setImageDrawable(image);
}
catch(Exception ex)
{
ex.printStackTrace();
}
Image01.setMinimumWidth(width);
Image01.setMinimumHeight(height);
Image01.setMaxWidth(width);
Image01.setMaxHeight(height);
UPDATE :: 如果你加载一个大尺寸的图像显然你将需要等待更多的时间,并且可能会导致UnknowHostException的下载问题。
是的,你是对的,你将在本地保存你的图像,本地访问比下载更快。
为避免旋转更改出现问题,请在Manifest.xml中设置configChanges =“keyboardHidden | orientation”属性
<activity android:name=".myActivity"
...
android:configChanges="keyboardHidden|orientation" >
...
/>