Scrolling credits text in Android
问题 I need to make a credits screen ( Activity ) in my game. It would be just a vertically scrolling text lines without any images. Scrolling is to be performed automatically and no user interaction is allowed. Just like movie credits that goes from bottom to top. After the last text line has disappeared above top of the screen, it should restart. How do I do it? It is sufficient to just use TextView and animate it somehow? Or should I put that TextView into ScrollView ? What would you suggest?