我正在使用customTextView
来停止textview
的滚动,这很好用。但是现在的问题是我无法使链接可点击。我尝试添加autoLink="web"
和caption.setMovementMethod(LinkMovementMethod.getInstance());
,但是它们都不起作用。谁能帮我解决这个问题?
自定义TextView:
public class NoScrollTextView extends TextView {
public NoScrollTextView(Context context) {
super(context);
}
public NoScrollTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public NoScrollTextView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
public NoScrollTextView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
}
@Override
public void scrollTo(int x, int y) {
}
}