如何设置可以在类内部的XML中设置的android:autoLink="web"
,例如对于此textView
final TextView finalTv;
finalTv.setMovementMethod(testCase);
根据 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
对于 Web,您可能希望使用此值:https://developer.android.com/reference/android/text/util/Linkify.html#WEB_URLS