I need some help, i want the android scrollview animation effect.... Basically when the someone click on the textview of linearlayout in scrollview another horizontal view should come in.
Here is the pic....
I need some help, i want the android scrollview animation effect.... Basically when the someone click on the textview of linearlayout in scrollview another horizontal view should come in.
Here is the pic....
What you could do is setup ontouch() on the textview. once you touch it then you would make the layout visible with setVisiblity(). you could even add in a animation to make it more professional.
You would probably get a bug if you didnt make every other view GONE, when you touch a new textview.
I like this idea and I might work around with it myself!
Good Luck