我正在尝试添加一个带有经典you accept our terms and conditions and privacy polcy
文本的TextView,该文本带有到ToS和隐私权政策的网络链接,但在尝试使链接正常工作时遇到了麻烦。我可以创建链接,但是单击后它们什么也不做。我尝试了许多解决方案,但似乎都没有用。
您将如何使多个链接正常工作?
答案 0 :(得分:0)
您可以在TextView属性中添加android:autoLink="web"
<TextView
android:id="@+id/textview"
android:autoLink="web"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
答案 1 :(得分:0)
请确保设置正确的MovementMethod,以使链接可点击。
Java
textView.setMovementMethod(LinkMovementMethod.getInstance());
科特琳
textView.movementMethod = LinkMovementMethod.getInstance()