The question is \"How do i scroll up a ScrollView to top very smoothly and slowly\".
In my special case i need to scroll to top in about 1-2 seconds. Ive tried inter
You could use the Timer and TimerTask class. You could do something like
scrollTimer = new Timer(); scrollerSchedule = new TimerTask(){ @Override public void run(){ runOnUiThread(SCROLL TO CODE GOES HERE); } }; scrollTimer.schedule(scrollerSchedule, 30, 30);