ImageView没有正确缩小图像中心

2 android android-layout android-imageview


我无法在ImageView中正确缩放图像并使其居中.
向上扩展时,没有问题,但是当缩小时,图像不再显示居中,并且ImageView的边界是错误的,如下所示:

problem.png

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <ImageView
        android:src="@drawable/stereomood_splash"
        android:scaleType="fitCenter"
        android:id="@+id/imageView1"
        android:layout_width="100dip"
        android:layout_height="200dip"></ImageView>
</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

这是一个错误,有没有人找到解决方法?

Mat*_*lis 6

你应该android:adjustViewBounds="true"这个答案中设置.

您还需要设置两种android:layout_widthandroid:layout_heightwrap_content,否则我相信你的硬编码范围将覆盖任何视图界定调整.