HI, can someone know the answer tell me which is more efficient if the
bmp is a big bmp?

RemoteViews views = ...
Bitmap bmp = .....  //big bitmap


1.
views.setImageVIewBitMap(R.id.icon, bmp)

2.
bmp = BmpUtils.resizeToFitIconSize(bmp)
views.setImageVIewBitMap(R.id.icon, bmp)

In short, will resizing the bmp before setting it on a remote view
make it more efficient? Or should I just let the imageView take care
the resizing?

Thanks,
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to