这是我的布局文件
<LinearLayout ...
<ImageView
android:id="@+id/feed_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:adjustViewBounds="true"
android:contentDescription="@string/image_content_description" />
但ImageView
宽度不匹配父宽度。 (宽度是图像源宽度)
图片来源从网址加载延迟加载。
如何缩放图像视图无缝图像源的宽度?
我想要
宽度=匹配(或填充)父级。
高度=自动缩放
答案 0 :(得分:6)
您可以通过两种方式实现这一目标:
如果您的图片大于ImageView,则只能使用xml
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitCenter"
android:adjustViewBounds="true"/>
如果您的图片小于ImageView
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitXY"
android:adjustViewBounds="true"/>
使用第二个选项,您必须根据图像视图的实际宽度(相同比率)测量图像的宽度和高度,并在代码中设置ImageView的高度。
答案 1 :(得分:1)
您可以使用imageview的android:scaletype="fitXY"
属性
2.default Android会缩小你的图像以适应ImageView,保持纵横比。但是,请确保使用android:src =“...”而不是android:background =“...”将图像设置为ImageView。 src =使其缩放图像维持宽高比,但background =使其缩放并扭曲图像,使其完全适合ImageView的大小。 (您可以同时使用背景和源,这对于仅使用一个ImageView在主图像周围显示框架等内容非常有用。)
答案 2 :(得分:0)
如果你想在视图中使用图像,请使用android:scaleType =“fitXY”
答案 3 :(得分:0)
您可以通过此方法实现此目的,创建扩展imageView的新AspectRatioImageView:
public class AspectRatioImageView extends ImageView {
public AspectRatioImageView(Context context) {
super(context);
}
public AspectRatioImageView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public AspectRatioImageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
Drawable drw = getDrawable();
if (null == drw || drw.getIntrinsicWidth() <= 0) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
} else {
int width = MeasureSpec.getSize(widthMeasureSpec);
int height = width * drw.getIntrinsicHeight() / drw.getIntrinsicWidth();
setMeasuredDimension(width, height);
}
}
}
然后在你的布局xml中使用:
<my.app.AspectRatioImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/ar_imageview"/>
答案 4 :(得分:0)
<ImageView
android:id="@+id/idImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="fitXY"/>
根据您想要的宽高比计算高度
Display display = getActivity().getWindowManager().getDefaultDisplay();
int height = (display.getWidth() * 9) /16; // in this case aspect ratio 16:9
ImageView image = (ImageView) findViewById(R.id.idImage);
image.getLayoutParams().height = height;