如何使状态视图突出显示和超链接链接

How to make status view highlight and hyperlink links

我制作了一个类似于 whatsapp 的 android 应用程序。我有一个状态机制。在显示状态时它不做超链接。我尝试了很多方法,但其他方法都会引发错误。请帮忙

使用java代码:

TextView textView =(TextView)findViewById(R.id.textView);
textView.setClickable(true);
textView.setMovementMethod(LinkMovementMethod.getInstance());
String text = "<a href='http://www.facebook.com'> Facebook </a>";
textView.setText(Html.fromHtml(text));

// From API level >= 24 onwards Html.fromHtml(String source) is deprecated instead use fromHtml(String, int)
textView.setText(Html.fromHtml(text, Html.FROM_HTML_MODE_COMPACT));

或在布局 XML 文件中,在您的 TextView 小部件属性中

android:autoLink="web"
android:linksClickable="true"