android:autoLink="web" 在 java
android:autoLink="web" in java
如何设置android:autoLink="web"
可以在XML里面设置class,比如这个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
对于网络,您可能希望使用此值:
https://developer.android.com/reference/android/text/util/Linkify.html#WEB_URLS
如何设置android:autoLink="web"
可以在XML里面设置class,比如这个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
对于网络,您可能希望使用此值: https://developer.android.com/reference/android/text/util/Linkify.html#WEB_URLS