我需要在一个由onPostExecute方法打开的AlertDialog窗口中打开一个链接(仅当我点击它时)(例如:https://en.wikipedia.org/wiki/Quantico_(TV_series)):
@Override
protected void onPostExecute(String result) {
String res=result.replace("^", "\n");
String link=result.substring(result.indexOf("[") + 1, result.indexOf("]"));
res=res.replaceAll("[.*?]", "");
res=res.replace("[", "");
res=res.replace("]","");
alertDialog.setMessage(res+link);
alertDialog.show();
//System.out.println("RESULT FOUND ===>> "+ res);
//UtilityFunct.list.clear();
}
这是我的Nexus 5X的输出示例:
我使用“替换”来隔离我需要点击的链接。 我尝试了很多在stackoverflow中找到的方法,但是没有人工作。
我该怎么办?可能吗? 谢谢
答案 0 :(得分:1)
尝试使用以下代码
TextView message = new TextView(YourClass.this);
SpannableString s = new SpannableString("Text with like http://yoursite.com"");
Linkify.addLinks(s, Linkify.WEB_URLS);
message.setText(s);
message.setMovementMethod(LinkMovementMethod.getInstance());
alertDialog.setView(message);
alertDialog.show();