I needed TextView which would flash on text change - so I made CustomTextView like described in here. It works great but I have problem when I set that CustomTextView in list item. Because of ListView items are being reused my CustomTextView keeps flashing when scrolling up/down because it's context changes and now it 'points' to another list item.
Problem is I don't know how to determine when context of the item is changed, so I cannot put noFlash flag (Text property of the CustomTextView is not set to null, so I cannot use that either)
OnAttachedToWindow
andOnDetachedFromWindow
github.com/MvvmCross/MvvmCross/blob/3.5/Cirrious/… - or maybe in some custom Adapter code – Stuart