I have written a custom view in android. I need to do some processing when visibility of this view is changed. Is there some listener which is called when visibility of a vi
Do you want to do that processing within your custom view class?
If so, then why not just override the setVisibility() method, call super(), and then do your custom processing?