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>
これはバグですか?回避策を見つけた人はいますか?