I have one activity with many elements on it, when is first started it looks good and the images with gradients look prefect. for example this image

enter image description here

But after I touch the screen these images are changed badly, and they look ugly, I think this effect is called dithering

enter image description here

I not know if you will able to see the difference between this two images , but please zoom in and look carefully, and you will notice.

What is the problem ? what should I do ?

I tried with wrap_content I tried with fixed dimensions in px , in dip in everything it acts the same, at first it looks great and after any touch on the screen it change it self and it looks ugly, the image is the same but the rendering is very bad.

Please post answer if you really know how can I fix this(please do not guess answers, I guessed almost everything so far), Thanks

link|improve this question

64% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You can enable dithering by using code:

findViewById(R.id.ImageView01).getBackground().setDither(true);

Otherwise, you can apply dither from XML(define it inside the res/drawable folder) and set drawable as background

<?xml version="1.0" encoding="UTF-8"?>
<bitmap
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/btn_background"
    android:dither="true" />
link|improve this answer
but I think this is available only on 2.3 and above, or I am wrong ? – Lukap Nov 11 '11 at 10:36
are you using 9-patch images for background? – Paresh Mayani Nov 11 '11 at 10:38
no, it is not 9-patch, it is normal png image – Lukap Nov 11 '11 at 10:43
1  
According to the docs, setDither() is available since API Level 1. – Felix Nov 11 '11 at 10:45
ok check i have updated answer – Paresh Mayani Nov 11 '11 at 10:46
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.