如何设置可在类内部设置的android:autoLink="web"
,例如此textView
final TextView finalTv;
finalTv.setMovementMethod(testCase);
答案 0 :(得分:1)
根据Android文档,您应该使用TextView的setAutoLinkMask
(https://developer.android.com/reference/android/widget/TextView.html#setAutoLinkMask(int)),并传入其中一个枚举:
https://developer.android.com/reference/android/text/util/Linkify.html#ALL
对于网络,您可能希望使用此值: https://developer.android.com/reference/android/text/util/Linkify.html#WEB_URLS