Androidのmytweetsアプリですべてのtwitter @メンションにリンクを付けたいです。@メンションをクリックすると、@メンションに関する別のページが開きます。
このコードは機能しません。まず、ツイートで @mentions を検索し、この @mentions のリンクを提供します。この @mentions をクリックすると、この @mentions に関する別のページが開きます。
TextView bt = (TextView) v.findViewById(R.id.bottomtext);
Pattern atMentionPattern = Pattern.compile("@([A-Za-z0-9_]+)");
String atMentionScheme = "http://twitter.com/";
TransformFilter transformFilter = new TransformFilter() {
public String transformUrl(final Matcher match, String url) {
return match.group(1);
}
};
Linkify.addLinks(bt, Linkify.ALL);
Linkify.addLinks(bt, atMentionPattern, atMentionScheme, null, transformFilter);