How to make scrollable text with the link?
android, hyperlink, scroll, textview
Solution
just use LinkMovementMethod as it is ScrollingMovementMethod as well
Problem
I use the following code to make the text view scrollable: ``` TextView mTextView6 = (TextView) findViewById(R.id.wizard6_text1); mTextView6.setMovementMethod(new ScrollingMovementMethod()); ``` and the following code to make links (given as `<a href="http://example.com">example</a>`) clickable: ``` mTextView6.setMovementMethod(LinkMovementMethod.getInstance()); ``` It works well separately. But how should I use it together?