我有一个TextView
,其中的html内容包含许多超链接。
问题:通常,当用户要滚动文本时,系统会将其视为单击链接并重定向到浏览器。
问题::如何降低TextView
内臀部的敏感度?还是有没有其他方法可以将超链接嵌入我的应用程序中而不会出现此问题?
使用浏览器或带有超链接的其他应用程序时,显然不会发生这种情况。
我的代码:
<TextView
android:id="@+id/text_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical" />
Java:
TextView textView = findViewById(R.id.text_view);
textView.setText(Html.fromHtml("some html content"));