我有一些尺寸合适并放入drawable-land-ldpi和drawable-port-ldpi的图像资源。当我看到应用程序的外观时,图像显示为横向横向拉伸和纵向纵向拉伸。
但是,如果我使用 DDMS 截取屏幕截图,它们的尺寸看起来非常完美,完全没有变形!发生了什么?
它在 android 4.0.3 上,一个实际的设备。最简单的图像布局。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/black"
tools:context=".MainActivity" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/imageb" />
</RelativeLayout>