当我在布局上添加图像时,它显示质量差
<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" />
如何解决? (我只需要无需编程即可修复它)
感谢
答案 0 :(得分:0)
我认为你的图像是拉伸使用imageview的属性来获得完整的图像..
android:scaleType="matrix"
控制如何调整图像大小或移动图像以匹配此ImageView的大小。
答案 1 :(得分:0)
您是否压缩或更改了图像格式?有时这样做会导致图像失真。并确保您要在ImageView android:background
或android:src
中设置的内容?