#2 :) On Tue, Apr 28, 2009 at 4:56 PM, zl25drexel <[email protected]> wrote: > > 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, > > >
-- Romain Guy Android framework engineer [email protected] Note: please don't send private questions to me, as I don't have time to provide private support. All such questions should be posted on public forums, where I and others can see and answer them --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

