如果您遵循以下字符串表示方式,则无需提供 HTML 命令来链接 URL 和数字。
--> 假设您在 strings.xml 文件夹中有字符串
<string name="string_name">Welcome to www.google.com .It is the worlds best online search engine.</string>
--> 现在在您的 xml 文件 TextView 小部件中添加以下属性。
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="15dp"
android:autoLink="all"
android:textColor="@color/colorBlack"
android:text="@string/string_name"
android:id="@+id/id_string_name_textView" />
现在奇迹发生了……只需运行代码并查看自动允许链接 URL 和数字的更改。
如果您想提供描述性数据以链接字符串,请以编程方式将以下语句用于 TextView
string_name_textView.setMovementMethod(LinkMovementMethod.getInstance());