3

I am currently working on a wallpaper application. Is there a way to make a bitmap look less blurry and more crisp once it is set as a wallpaper? Does it just require cropping the picture and resizing it to fit the size of the screen perfectly, or there is some other way?

P.S. I read that the application wallpaper set and save is able to deliver very good quality wallpapers once launched!

Nick Stauner
  • 395
  • 3
  • 13
Amine
  • 195
  • 2
  • 8

1 Answers1

3

Where are you saving the bitmap? Try placing it in /res/raw as opposed to /res/drawable This prevents android from optimizing the image file, and should make it crisper.

dfetter88
  • 5,381
  • 13
  • 44
  • 55
  • Thanks a lot !!! I just made the adjustment that you proposed and seems to be working pretty well . There is clearly a big improvement in the image's quality. – Amine Aug 05 '10 at 04:22