Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having a problem with images in my PhoneGap application. The icon images appear blurry; How can I resolve this issue?

Blurry Icons

This is my CSS

#login input:first-child { background: rgba(255,255,255,0.0) url(../images/holo_dark/hdpi/5_content_email.png) no-repeat; }
share|improve this question
1  
Have you tried to use images with better resolution? – Erez Rabih Sep 16 '12 at 14:04
test them on chrome or safari(or any other webkit-based browser and tell me the results – Ocelot Sep 16 '12 at 15:17

2 Answers

up vote 1 down vote accepted

I would suggest make icons according to DPI in android. Like samsung s2 has 1.5 dpi so we have to take the icon 1.5 times bigger than normal and adjust the icon by -webkit-background-size.

share|improve this answer

I would suggest doubling the size of the image to larger then needed. Then set CSS rule to half it. This will cover if your screen is larger then the standard 72ppi.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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