I am having a HorizontalScrollView in my application and I am playing with its visibility very frequently(VISIBLE and GONE). So what I want is, instead of suddenly making it visible and invisible, can I apply some kind of animation or something so that it will start becoming visible and invisible in a sliding manner ?
Any help or suggestions would be highly appreciated.
Thanks in advance.
You could try this:
To make it visible or invisible you could use setAnimationListener. In onAnimationEnd, make it visible or invisible. NOt sure if this is what you meant..Hope it helps..