我似乎无法让我的ImageView以原始大小显示其源图像。 ImageView看起来像这样:
<ImageView
android:id="@+id/Logo"
android:src="@drawable/logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
</ImageView>
源图像宽140像素,但在Nexus One的屏幕上,宽度为480像素,占用了宽度的一半。使用px或dp中的绝对值来表示宽度和高度不会改变任何值。从升级看,图像看起来也非常抗锯齿。为什么会发生这种情况?如何防止它?
答案 0 :(得分:7)
最有可能的是,Android正在扩大图像,因为您没有告诉它您支持大屏幕。在您的清单中添加suitable <supports-screens>
element,看看是否有帮助。