• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps How to create a scroll animation in Android studio?

Hi,
I'm new to Android development. I'm working on an app that requires some form of animation. Please have a look at this

SCREENANIM.png


I want to create an animation where a scroll rolls down as soon as this activity starts & displays the text above in it & rolls up when the connect button is clicked.

I have no clue how or where to begin. I have looked at tutorials for Page curl, but that didn't help much. Any links to relevant tutorials or posts will be of much help.

Thank you for your time!
 
Last edited:
You could try something like this
Java:
ScrollView sv = (ScrollView)findViewById(R.id.scrl);
sv.scrollTo(0, sv.getBottom());
or

sv.scrollTo(5, 10);
 
Back
Top Bottom