android layout images bad quality
Posted
by
user1028269
on Stack Overflow
See other posts from Stack Overflow
or by user1028269
Published on 2011-11-19T09:39:27Z
Indexed on
2011/11/19
9:50 UTC
Read the original article
Hit count: 468
when I add images on layout it show in bad quality
<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" />
how to fix it? (I need to fix it only without programmatically)
thanks
© Stack Overflow or respective owner