centerInside 不能将 Drawable 缩放到 ImageView

Posted

技术标签:

【中文标题】centerInside 不能将 Drawable 缩放到 ImageView【英文标题】:centerInside does not scale Drawable to ImageView 【发布时间】:2017-06-21 03:13:46 【问题描述】:

centerInside的描述

均匀缩放图像(保持图像的纵横比),使图像的两个尺寸(宽度和高度)都等于或小于视图的相应尺寸(减去填充)。

我想这个描述意味着图像应该缩放到它的视图容器中最接近它的边缘。

我的资产文件夹中的这个红色小方块似乎没有缩放

这是我的main_activity.xml

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_
    android:layout_
    android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:layout_
        android:layout_
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_
            android:layout_
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

    </android.support.design.widget.AppBarLayout>

    <ImageView
        android:id="@+id/redSquare"
        android:layout_
        android:layout_
        android:scaleType="centerInside"
        android:background="#00ffff"
        />

</android.support.design.widget.CoordinatorLayout>

在这里我将可绘制对象设置为图像视图

ImageView redSqaure;

@Override
protected void onCreate(Bundle savedInstanceState) 

    setContentView(R.layout.main_activity);

    //...

    try 

        InputStream ims = getAssets().open("redSquare.png");
        Drawable d = Drawable.createFromStream(ims, null);

        // Setting the drawable to image view
        redSqaure.setImageDrawable(d);

        ims .close();

     catch(IOException ex)  

    


有什么帮助吗?谢谢。

【问题讨论】:

【参考方案1】:

是的,它按照它所说的做了:

均匀缩放图像(保持图像的纵横比),使图像的两个尺寸(宽度和高度)都等于或小于视图的相应尺寸(减去填充)。

它维护您的图像并且尺寸小于您的父视图。如果您需要图像适合您的视图,只需在您的 xml 中添加以下行:

android:scaleType="fitCenter" // change this flag as well.
android:adjustViewBounds="true" //Set this to true if you want the ImageView to adjust its bounds to preserve the aspect ratio of its drawable.

【讨论】:

你分享的xml属性好像没有我想要的效果 看起来它可能正在工作,唯一的问题是应用栏与图像视图重叠 好的,是的,它正在工作,谢谢。但是,我不明白为什么 centerInside 不能正常工作。

以上是关于centerInside 不能将 Drawable 缩放到 ImageView的主要内容,如果未能解决你的问题,请参考以下文章

Android ImageView(scaleType属性)图片按比例缩放

修改 android drawable 的颜色

java.lang.NullPointerException: decodeResource(context.r…rces, R.drawable.ic_logo) 不能为空

Android - 使用 xml drawable 制作检查图标

Android Animated Vector Drawable 无法在 xml 中循环

如何将形状drawable和drawable组合成单个drawable