84

画像をダウンロードし、を使用して動的に画面の背景として設定しますImageview。画像を拡大縮小してみScaleTypeました。

画像の高さが幅よりも大きい場合は、、ScaleTypes fitStartおよびfitEnd機能fitCenterしません。Androidは写真を縮小し、高さに基づいて合わせますが、幅の一部として余分な空白が表示されます。

幅に基づいて写真を縮小して、幅に合わせたいのですが、高さの一部として余分な空白がある場合や、高さが長すぎる場合は、ビューから外れても問題ありません。 (それが可能であれば?)。

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 に答える