我无法让图像在 ImageView 中正确缩放和居中。
放大的时候没有问题,但是缩小的时候,图像不再出现居中,ImageView的边界不对,像这样:
<?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>
这是一个错误,有没有人找到解决方法?