I'm creating some tutorial text that the user should be able to scroll.
Is there any way to make vertical scroll in AndEngine so that we can easily view all the content by scrolling up and down?
I'm creating some tutorial text that the user should be able to scroll.
Is there any way to make vertical scroll in AndEngine so that we can easily view all the content by scrolling up and down?
There is no built in functionality in AndEngine to create a scrollable text. You can render the text and make it scrollable yourself. But in your case it will be better if you utilize Android SDK and add a new "text layer" to your layout.
Basically you want to design the layout in a way where the AndEngine RenderSurfaceView will be rendered under another view (let's call it text view). You can then show or hide this text view as you please and use it to render text. You can use any kind of Android SDK GUI Elements there, including scrollable text.