「Google`でstackoverflowを検索」のような単純なhtml文字列でlinkifyを作成したいと思います。次のコードで正規表現を使用してテキスト部分を検出しようとしましたが、「stackoverflow」という単語がテキストビューにリンクとして表示されませんでした
String content = "Search <b>stackoverflow<b> with Google";
TextView tv = (TextView)this.findViewById(R.id.tv);
tv.setText(Html.fromHtml(content));
Pattern pattern = Pattern.compile("<b\b[^>]*>(.*?)</b>");
Linkify.addLinks(tvContent, pattern, "http://www.google.com/search?q=",
null, myTransformFilter);
これに関する助けをいただければ幸いです。どうもありがとう....