android布局图片质量不好

时间:2011-11-19 09:39:27

标签: android android-layout android-manifest

当我在布局上添加图像时,它显示质量差

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/sbackground" />

如何解决? (我只需要无需编程即可修复它)

感谢

2 个答案:

答案 0 :(得分:0)

我认为你的图像是拉伸使用imageview的属性来获得完整的图像..

 android:scaleType="matrix"

控制如何调整图像大小或移动图像以匹配此ImageView的大小。

答案 1 :(得分:0)

您是否压缩或更改了图像格式?有时这样做会导致图像失真。并确保您要在ImageView android:backgroundandroid:src中设置的内容?