On Aug 26, 6:06 am, Andreea C <[email protected]> wrote: > What is the reason the ListView/ScrollView behaves so slowly in this > case? Is the whole background redrawn when scrolling ? > How can I solve this issue ?
Use a smaller bitmap in the layout. Scale it down prior to adding it to your ImageView, if you can to better suit the actual size of the ImageView. Otherwise your views will have to do a lot more computation than need be every time the bitmap needs to be drawn to screen. Doug -- 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

