Christopher Perry
Christopher Perry

Reputation: 39225

Android: How to stop Android 1.6+ from scaling images

I updated my build to build against Android 1.6, and now my bitmaps are scaled down on high density screens. I do NOT want this behavior. I gave this a shot:

http://blog.tomgibara.com/post/190539066/android-unscaled-bitmaps

but the images are STILL scaling, that is UNLESS I set them to a specific height & width. If I use wrap_content they are scaled down.

I have an image loader using the unscaled bitmap loader to create a drawable like so:

Bitmap bm = UnscaledBitmapLoader.loadFromResource(imageBufferInputStream);
drawable = new BitmapDrawable(bm);

which I later assign to an ImageView like so:

imageView.setImageDrawable( copyBitmapDrawable( (BitmapDrawable) drawable) );

Upvotes: 1

Views: 4131

Answers (4)

Peter Lawford
Peter Lawford

Reputation: 21

Using

new BitmapDrawable(this.getResources(), bmp); 

instead of

 new BitmapDrawable(bmp);

should solve the issue.

Upvotes: 2

Manfred Moser
Manfred Moser

Reputation: 29912

In order to have an image not scaled when loading it from a resource (e.g. with BitmapFactory.decodeResource) you have to locate it in res/drawable-nodpi instead of the usual drawable, drawable-ldpi and so on.

Upvotes: 3

Christopher Perry
Christopher Perry

Reputation: 39225

Wrapping the bitmap with a Drawable is the problem. The Drawable scales the Bitmap. Instead of using a Drawable, assign the Bitmap to the ImageView directly using imageView.setImageBitmap(Bitmap).

Upvotes: 1

Vuk
Vuk

Reputation: 1235

Use ImageView.ScaleType. The CENTER constant preforms no scaling, so I guess that's what you are looking for.

By the way, do you use pixels or dips as size units? Using dips (density-independent-pixels) is a means of standardizing display on multiple resolutions. You'll find a couple of tips here.

Upvotes: 0

Related Questions