84

我下载图像并使用Imageview. 我试过ScaleType, 来缩放图像。

如果图像高度大于宽度ScaleTypes fitStart,则不工作fitEndfitCenterAndroid 缩小照片并根据高度调整它,但我看到一些额外的空白空间作为宽度的一部分。

我想根据宽度缩小照片以使其适合宽度,我不在乎是否有一些额外的空白空间作为高度的一部分,或者如果高度太长,如果它不在视图中也没关系(如果可能的话?)。

ScaleType.XY缩放照片并将所有内容放入其中ImageView,并且不关心图像的高度/重量比。

<ImageView 
                android:id="@+id/background"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:adjustViewBounds="true"
                android:scaleType="fitStart"
            />
4

7 回答 7

206

我最终使用了这段代码:

<ImageView 
                android:id="@+id/background"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:adjustViewBounds="true"
                android:scaleType="centerCrop"
                android:src="@drawable/name"
            />

确保使用src而不是设置图像background

于 2013-04-03T12:06:29.467 回答
76

android:adjustViewBounds="true"做这项工作!

于 2014-09-08T15:01:35.240 回答
14

在这里找到的这个优雅的解决方案对你来说就像一个魅力。

基本上,您只需要创建一个扩展的小类,ImageView并简单地覆盖该onMeasure方法即可根据需要调整宽度和高度。在这里,它通过使用以下方式缩放以适应宽度:

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    int width = MeasureSpec.getSize(widthMeasureSpec);
    int height = width * getDrawable().getIntrinsicHeight() / getDrawable().getIntrinsicWidth();
    setMeasuredDimension(width, height);
}

你会像这样使用这个特殊ImageView的:

<your.activity.package.AspectRatioImageView 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="center_vertical"
    android:src="@drawable/test" />
于 2012-08-22T20:10:56.877 回答
9

如果您只是想填充屏幕的宽度并具有成比例的高度(并且知道图像的比例),那么有一个简单的方法,您可以在 OnCreate() 中执行此操作:

setContentView(R.layout.truppview_activity);
trupImage = (ImageView) findViewById(R.id.trupImage);

Display display = getWindowManager().getDefaultDisplay();
DisplayMetrics outMetrics = new DisplayMetrics();
display.getMetrics(outMetrics);
float scWidth = outMetrics.widthPixels;
trupImage.getLayoutParams().width = (int) scWidth;
trupImage.getLayoutParams().height = (int) (scWidth * 0.6f);

其中 0.6 是比例调整(如果您知道图像的 w & h,当然也可以自动计算)。

PS:
这里是 XML 方面:

  <ImageView
        android:id="@+id/trupImage"
        android:layout_width="match_parent"
        android:background="@color/orange"
        android:layout_height="match_parent" 
        android:adjustViewBounds="true" 
        android:scaleType="fitCenter" />
于 2013-05-06T11:32:29.387 回答
7

如果你想让图像适合整个父块
,它将拉伸图像

        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="fitXY" 

如果你想用图像的原始比例来拟合图像的整个父级,
它会裁剪掉图像的某些部分

        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:adjustViewBounds="true"
        android:scaleType="centerCrop"
于 2019-10-30T18:57:58.547 回答
6

这对我有用。

创建一个类扩展 ImageView

    package com.yourdomain.utils;

    import android.content.Context;
    import android.graphics.drawable.Drawable;
    import android.util.AttributeSet;
    import android.widget.ImageView;

    public class ResizableImageView extends ImageView {

        public ResizableImageView(Context context, AttributeSet attrs) {
            super(context, attrs);
        }

        @Override 
        protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
            Drawable d = getDrawable();

            if (d != null) {
                int width = MeasureSpec.getSize(widthMeasureSpec);
                int height = (int) Math.ceil((float) width * (float) d.getIntrinsicHeight() / (float) d.getIntrinsicWidth());
                setMeasuredDimension(width, height);
            } else {
                super.onMeasure(widthMeasureSpec, heightMeasureSpec);
            }
        }
    }

在 xml 中使用以下而不是 ImageView

    <com.yourdomain.utils.ResizableImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/test" />
于 2014-12-29T11:56:40.577 回答
1

我认为你不能只用 XML 来做,你需要调整自己的大小,位图

Display display = getWindowManager().getDefaultDisplay();
int width = display.getWidth();

        try {
            ((ImageView) findViewById(R.id.background))
                    .setImageBitmap(ShrinkBitmap(width));
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }

然后

private Bitmap ShrinkBitmap(int width)
        throws FileNotFoundException {

    BitmapFactory.Options bmpFactoryOptions = new BitmapFactory.Options();
    bmpFactoryOptions.inJustDecodeBounds = true;
    Bitmap bitmap = BitmapFactory.decodeResource(getResources(),
            R.drawable.img, bmpFactoryOptions);
    int widthRatio = (int) android.util.FloatMath
            .ceil(bmpFactoryOptions.outWidth / (float) width);


    bmpFactoryOptions.inSampleSize = widthRatio;



    if (bmpFactoryOptions.inSampleSize <= 0)
        bmpFactoryOptions.inSampleSize = 0;
    bmpFactoryOptions.inPreferredConfig = Bitmap.Config.ARGB_8888;
    bmpFactoryOptions.inJustDecodeBounds = false;
    bitmap = BitmapFactory.decodeResource(getResources(),
            R.drawable.img, bmpFactoryOptions);
    return bitmap;

}

和布局

 <ImageView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/background"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
  />
于 2012-08-21T16:56:21.537 回答