when I display a lot of text in the textView I turn on the scrolling command

textView.setMovementMethod(new ScrollingMovementMethod()); 

but if I scrolled the text down, and then output 1 line of text, the text is not visible. you need an invisible slider to scroll up. How to disable setMovementMethod

    1 answer 1

     textView.setMovementMethod(null); 
    • He himself found a solution - Hellraiser