Android:图像调整大小适用于所有屏幕

时间:2012-01-09 10:22:53

标签: android image resize

早上好。我有一个像所有显示宽度一样大的图像。我想要为所有屏幕尺寸和密度调整此图像的大小。我已将各种尺寸的图像放入目录drawable-ldpi,mdpi,hdpi和xhdpi,但对于相同的显示,例如Galaxy Note或Galay Nexus,图像不占用所有屏幕宽度!为什么?我该怎么办?

由于

4 个答案:

答案 0 :(得分:0)

最简单的方法并不总是最好的,所以我会考虑其他选择。 但是,如果为XHDPI设备创建映像并将其放在xhdpi文件夹中。 低于xhdpi的设备会自动为您缩放图像。

看看here

希望这会有所帮助

答案 1 :(得分:-1)

//使用

android:scaleType="fitXY"

normal hdpi is 480x 800 ~240dpi

但你的

samsung note is 800 x 1280 pixels, 5.3 inches (~285 ppi pixel density)
galaxy nexus is 720 x 1280 pixels, 4.65 inches (~316 ppi pixel density)

或使用Displaymetrics获取屏幕密度,并提供不同密度的各种图像。

答案 2 :(得分:-2)

你必须在manifest.XML中创建一个图像。然后,对于该属性,您只需要输入

android:layout_width="wrap_content"
android:layout_height="wrap_content"

设置图片的宽度和高度。在这里,它将在整个屏幕上显示图像。

答案 3 :(得分:-2)

public class ScreenWidthImgView extends ImageView {

    public ScreenWidthImgView(Context context) {
        super(context);
        setScaleType(ScaleType.FIT_XY);
    }

    public ScreenWidthImgView(Context context, AttributeSet attrs) {
        super(context, attrs);
        setScaleType(ScaleType.FIT_XY);
    }

    public ScreenWidthImgView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        setScaleType(ScaleType.FIT_XY);
    }

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

将此ImageViewlayout_width="match_parent"layout_height="wrap_content"结合使用,可以获得始终占据整个屏幕宽度并均匀缩放图像的图像。