Scroll up a ScrollView slowly

前端 未结 5 572
小蘑菇
小蘑菇 2020-12-09 18:31

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

5条回答
  •  春和景丽
    2020-12-09 18:52

    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);
    

提交回复
热议问题