smoothScrollTo - 提示效果

时间:2015-06-15 10:22:15

标签: android smooth-scrolling

我尝试像提示效果一样。顺利地逐行移动但是smoothScrollTo并不是那么顺利。我想做的是在scrollview中缓慢出现的文本。就像一个电视提示器。 任何线索怎么做?

1 个答案:

答案 0 :(得分:0)

我设法找到了一个解决方案:

    private void displayWPM(){
// 
// 8 lines per minute to reach 50 wpm = 6 words per line
// correspondig to my scrollview width = 500dp
// and textview large font
//
        new CountDownTimer(300000, 195) {
        int i =0;
            public void onTick(long millisUntilFinished) {
                sv.smoothScrollTo(0,i*1);
                i++;
            }

            public void onFinish() {
 //               text.setText("Done");
            }

        }.start();

    }