First of all let me excuse for this question, I know that many other people asked it here, but I am so stupid that did not find any correct answer for me. I have a ScrollView and many TextViews and ImageViews inside of it. I want to scroll all this stuff across the screen like a movie's credits. I found this method. It works but only for a few seconds and then stops.:
public void scrollRight(final ScrollView h){
new CountDownTimer(2000, 1) {
public void onTick(long millisUntilFinished) {
h.scrollTo(0,(int) (2000-millisUntilFinished)/25);
}
public void onFinish() {
}
}.start(); }