On Sat, Jul 2, 2011 at 9:07 AM, Simon Platten <[email protected]> wrote: > I have a listview which has an ImageView in each item and a couple of > buttons. The buttons allow the user to rotate the image clockwise and > counter clockwise by 90 degrees on each press. This works find and the > ImageView is rotated, however if I scroll the item off view, when I scroll > it back into view the orginal image is restored without any rotation > applied, is there a notification that I can get when the item comes into > view so I can correct the image
You are already overriding getView(), presumably. That is where you apply your rotation. > or....can I modifiy the original ImageView > in the list view directly? You are already overriding getView(), presumably. That is where you are modifying "the original ImageView", so that is where you apply your rotation. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 3.5 Available! -- 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

